mirror of
https://github.com/libretro/libretro-o2em.git
synced 2024-11-27 02:10:24 +00:00
Take out unused alleg_upcase
This commit is contained in:
parent
dabd4d5d35
commit
f7a82d2085
@ -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')
|
||||
|
@ -4,11 +4,3 @@
|
||||
void debug(void);
|
||||
|
||||
#endif /* DEBUG_H */
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user