#ifndef __INSIDE_OSLIB_H__ #error Only include this file in OSLib.h #endif /* strcat with a limit; max is the maximum string length excluding the null */ extern char *strcatn(char *d, const char *s, long max); /* strcpy with a limit; max is the maximum string length excluding the null */ extern char *strcpyn(char *d, const char *s, long len, long max); /* strstr with case insensitivity */ extern const char *stristr(const char *hay, const char *nee);