home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / program / lynxlib / string.h < prev    next >
C/C++ Source or Header  |  1993-10-23  |  366b  |  27 lines

  1. /* string.h header file for string functions */
  2.  
  3. #ifndef STRING_H
  4. #define STRING_H
  5.  
  6. extern char
  7.     *strcpy(),
  8.     *strncpy(),
  9.     *strcat(),
  10.     *strncat(),
  11.     *strchr(),
  12.     *strrchr(),
  13.     *strpbrk(),
  14.     *strstr(),
  15.     *strtok(),
  16.     *strerror(),
  17.     *index(),
  18.     *rindex();
  19. extern int
  20.     strcmp(),
  21.     strncmp(),
  22.     strlen();
  23. extern unsigned int
  24.     strcspn(),
  25.     strspn();
  26. #endif
  27.