Assume all function names are lower-case.

This commit is contained in:
Dianne Skoll
2024-06-01 08:46:27 -04:00
parent d2b43605ad
commit b78702cc53
7 changed files with 65 additions and 15 deletions

View File

@@ -130,6 +130,14 @@ int DateOK(int y, int m, int d)
return 1;
}
void strtolower(char *s)
{
while (*s) {
*s = tolower(*s);
s++;
}
}
/* Functions designed to defeat gcc optimizer */
int _private_mul_overflow(int a, int b)