Fix STRUPR and STRLWR after 5aabb915ec

Fixes #647
This commit is contained in:
Rangi
2020-12-15 13:07:04 -05:00
committed by Eldred Habert
parent 0956d300c4
commit f31deb5010
6 changed files with 21 additions and 21 deletions

View File

@@ -197,22 +197,6 @@ static void opt_ParseDefines(void)
sym_AddString(cldefines[i], cldefines[i + 1]);
}
void upperstring(char *s)
{
while (*s) {
*s = toupper(*s);
s++;
}
}
void lowerstring(char *s)
{
while (*s) {
*s = tolower(*s);
s++;
}
}
/* Escapes Make-special chars from a string */
static char *make_escape(const char *str)
{