From a6c1ed4716cf02626ea035beb6dd4a921642ba80 Mon Sep 17 00:00:00 2001 From: PikalaxALT Date: Wed, 3 Jan 2018 17:39:24 -0700 Subject: Use libc from agbcc instead of standalone newlib\nYou must have AGBCC commit 80d029caec189587f8b9294b6c8a5a489b8f5f88 in order to compile pmd_red.gba --- newlib/libc/string/strlwr.c | 50 --------------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 newlib/libc/string/strlwr.c (limited to 'newlib/libc/string/strlwr.c') diff --git a/newlib/libc/string/strlwr.c b/newlib/libc/string/strlwr.c deleted file mode 100644 index cf0d45f..0000000 --- a/newlib/libc/string/strlwr.c +++ /dev/null @@ -1,50 +0,0 @@ -/* -FUNCTION - <>---force string to lower case - -INDEX - strlwr - -ANSI_SYNOPSIS - #include - char *strlwr(char *<[a]>); - -TRAD_SYNOPSIS - #include - char *strlwr(<[a]>) - char *<[a]>; - -DESCRIPTION - <> converts each characters in the string at <[a]> to - lower case. - -RETURNS - <> returns its argument, <[a]>. - -PORTABILITY -<> is not widely portable. - -<> requires no supporting OS subroutines. - -QUICKREF - strlwr -*/ - -#include -#include - -char * -strlwr (a) - char *a; -{ - char *ret = a; - - while (*a != '\0') - { - if (isupper (*a)) - *a = tolower (*a); - ++a; - } - - return ret; -} -- cgit v1.2.3