]> git.sur5r.net Git - cc65/blobdiff - src/cc65/util.c
Simplify code generation
[cc65] / src / cc65 / util.c
index c39232dc0e66f611fcfdcddb9faa516b22a6bc47..e2ddc474f4d5fbf0c66dbc9be9610f6542dee5c0 100644 (file)
 
 
 
-int IsBlank (char c)
-/* Return true if c is a space, tab or newline */
-{
-    return (c == ' ' || c == '\t' || c == '\n');
-}
-
-
-
-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.