mirror of
https://salsa.debian.org/dskoll/remind.git
synced 2026-04-17 14:59:20 +02:00
Assume all function names are lower-case.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user