home *** CD-ROM | disk | FTP | other *** search
/ ftp.whtech.com / ftp.whtech.com.7z / ftp.whtech.com / emulators / v9t9 / linux / sources / V9t9 / source / OSLib / OSLibExtras.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-10-19  |  457 b   |  13 lines

  1. #ifndef __INSIDE_OSLIB_H__
  2. #error Only include this file in OSLib.h
  3. #endif
  4.  
  5. /*    strcat with a limit; max is the maximum string length excluding the null */
  6. extern char *strcatn(char *d, const char *s, long max);
  7.  
  8. /*    strcpy with a limit; max is the maximum string length excluding the null */
  9. extern char *strcpyn(char *d, const char *s, long len, long max);
  10.  
  11. /*    strstr with case insensitivity */
  12. extern const char    *stristr(const char *hay, const char *nee);
  13.