home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / c / cug292wk.zip / PCDSK2 / STRING.H < prev    next >
C/C++ Source or Header  |  1993-01-22  |  512b  |  16 lines

  1. /* STRING.H */
  2. /* DECUC C */
  3.  
  4. extern    char *    strcat();
  5. extern    char *    strchr();
  6. extern    int    strcmp();
  7. extern    char *    strcpy();
  8. extern    int    streq();
  9. extern    int    strlen();
  10. extern    char *    strncat();
  11. extern    int    strncmp();
  12. extern    char *    strncpy();
  13. extern    int    strneq();
  14. extern    char *    strrchr();
  15.