keepch ('#');
keepstr (Ident);
}
- } else if (IsQuoteChar (CurC)) {
+ } else if (IsQuote (CurC)) {
mptr = CopyQuotedString (mptr);
} else {
*mptr++ = CurC;
*B++ = CurC;
NextChar ();
++ParCount;
- } else if (IsQuoteChar (CurC)) {
+ } else if (IsQuote (CurC)) {
B = CopyQuotedString (B);
} else if (CurC == ',' || CurC == ')') {
if (ParCount == 0) {
}
keepstr (Ident);
}
- } else if (IsQuoteChar (CurC)) {
+ } else if (IsQuote (CurC)) {
mptr = CopyQuotedString (mptr);
} else if (CurC == '/' && NextC == '*') {
keepch (' ');
} else {
keepstr (Ident);
}
- } else if (IsQuoteChar(CurC)) {
+ } else if (IsQuote (CurC)) {
mptr = CopyQuotedString (mptr);
} else {
*mptr++ = CurC;
-int IsQuoteChar (char c)
-/* Return true if c is a single or double quote */
-{
- return (c == '"' || c == '\'');
-}
-
-
-
int powerof2 (unsigned long val)
/* Return the exponent if val is a power of two. Return -1 if val is not a
* power of two.
-int IsQuoteChar (char c);
-/* Return true if c is a single or double quote */
-
int powerof2 (unsigned long val);
/* Return the exponent if val is a power of two. Return -1 if val is not a
* power of two.