Take out unused alleg_upcase

This commit is contained in:
twinaphex 2014-08-24 16:38:29 +02:00
parent dabd4d5d35
commit f7a82d2085
2 changed files with 0 additions and 18 deletions

View File

@ -5,16 +5,6 @@
#include <stdlib.h>
#include <string.h>
void alleg_upcase(char *p)
{
while(*p != '\0')
{
if(*p >= 97 && *p <= 122)
*p -= 32;
++p;
}
}
void alleg_downcase(char *p)
{
while(*p != '\0')

View File

@ -4,11 +4,3 @@
void debug(void);
#endif /* DEBUG_H */