12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #include <ctype.h>
- #include "OpenDoor.h"
- #ifdef ODPLAT_NIX
- #include <string.h>
- char *
- od_strlwr(char *str)
- {
- char *p;
-
- for(p=str;*p;p++)
- *p=tolower(*p);
- return(str);
- }
- char *
- od_strupr(char *str)
- {
- char *p;
-
- for(p=str;*p;p++)
- *p=toupper(*p);
- return(str);
- }
- #endif
|