home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / gccdist / gcc / include / strings.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-29  |  369 b   |  28 lines

  1.  /*
  2.  * External function definitions for string routines
  3.  */
  4. #ifndef _STRING_H
  5. #define _STRING_H
  6.  
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10.  
  11. #include <sys/types.h> /* for size_t */
  12.  
  13. char    *strcat();
  14. char    *strncat();
  15. int    strcmp();
  16. int    strncmp();
  17. char    *strcpy();
  18. char    *strncpy();
  19. size_t    strlen();
  20. char    *index();
  21. char    *rindex();
  22.  
  23.  
  24. #ifdef __cplusplus
  25. }
  26. #endif
  27. #endif _STRING_H
  28.