X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fcc65%2Futil.c;h=e2ddc474f4d5fbf0c66dbc9be9610f6542dee5c0;hb=c51a706830b2fe433c2b87ab2f7a52277a5101e9;hp=c39232dc0e66f611fcfdcddb9faa516b22a6bc47;hpb=53dd513176425872128ef26031d00952ef7a0628;p=cc65 diff --git a/src/cc65/util.c b/src/cc65/util.c index c39232dc0..e2ddc474f 100644 --- a/src/cc65/util.c +++ b/src/cc65/util.c @@ -25,22 +25,6 @@ -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.