Searched refs:MAXCCHARS (Results 1 – 3 of 3) sorted by relevance
166 extern char ecommt[MAXCCHARS+1];/* end character for comment */168 extern char lquote[MAXCCHARS+1];/* left quote character (`) */174 extern char rquote[MAXCCHARS+1];/* right quote character (') */175 extern char scommt[MAXCCHARS+1];/* start character for comment */
93 char lquote[MAXCCHARS+1] = {LQUOTE}; /* left quote character (`) */94 char rquote[MAXCCHARS+1] = {RQUOTE}; /* right quote character (') */95 char scommt[MAXCCHARS+1] = {SCOMMT}; /* start character for comment */96 char ecommt[MAXCCHARS+1] = {ECOMMT}; /* end character for comment */
120 #define MAXCCHARS 5 /* max size of comment/quote delim */ macro