]> git.sur5r.net Git - cc65/commitdiff
Use IsQuote instead of IsQuoteChar
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 5 Jan 2001 19:26:25 +0000 (19:26 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 5 Jan 2001 19:26:25 +0000 (19:26 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@596 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/preproc.c
src/cc65/util.c
src/cc65/util.h

index 2a9935ac50c6a509d58114b3544fddb35e5bd377..3449a41bec337b6ec8cd18d0e882b3e50d54f2c9 100644 (file)
@@ -219,7 +219,7 @@ static void ExpandMacroArgs (Macro* M)
                keepch ('#');
                keepstr (Ident);
            }
-       } else if (IsQuoteChar (CurC)) {
+       } else if (IsQuote (CurC)) {
            mptr = CopyQuotedString (mptr);
        } else {
            *mptr++ = CurC;
@@ -265,7 +265,7 @@ static int MacroCall (Macro* M)
            *B++ = CurC;
            NextChar ();
            ++ParCount;
-       } else if (IsQuoteChar (CurC)) {
+       } else if (IsQuote (CurC)) {
            B = CopyQuotedString (B);
        } else if (CurC == ',' || CurC == ')') {
            if (ParCount == 0) {
@@ -488,7 +488,7 @@ static int Pass1 (const char* From, char* To)
                }
                keepstr (Ident);
            }
-       } else if (IsQuoteChar (CurC)) {
+       } else if (IsQuote (CurC)) {
            mptr = CopyQuotedString (mptr);
        } else if (CurC == '/' && NextC == '*') {
            keepch (' ');
@@ -543,7 +543,7 @@ static int Pass2 (const char* From, char* To)
            } else {
                keepstr (Ident);
            }
-       } else if (IsQuoteChar(CurC)) {
+       } else if (IsQuote (CurC)) {
            mptr = CopyQuotedString (mptr);
        } else {
            *mptr++ = CurC;
index 46e959d19f5677a63e2f04f7c2686e167ca3d23b..e2ddc474f4d5fbf0c66dbc9be9610f6542dee5c0 100644 (file)
 
 
 
-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.
index bfbe1e04eceb55ecc224d9993a6d534adbfe744d..700f85dbab30da8448f724936fa02633da7ef001 100644 (file)
@@ -17,9 +17,6 @@
 
 
 
-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.