#include <ctype.h>Go to the source code of this file.
Defines | |
| #define | touppercase(c) (toupper(((unsigned char)(c)))) |
Functions | |
| char * | strcasestr (char *src, char *sub) |
| #define touppercase | ( | c | ) | (toupper(((unsigned char)(c)))) |
Definition at line 100 of file substitutions.c.
Referenced by strcasestr().
| char* strcasestr | ( | char * | src, |
| char * | sub | ||
| ) |
Case-insensitive version of strstr().
| src | Pointer to string in which substring is seached |
| sub | Pointer to substring which is searced for in source string |
Definition at line 106 of file substitutions.c.
References touppercase.
Referenced by cunitFromFilename().
1.8.0