home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume11 / mush5.7 / part01 / strings.h < prev    next >
Encoding:
C/C++ Source or Header  |  1987-09-16  |  473 b   |  17 lines

  1. /* @(#)strings.h    (c) copyright 9/3/86 (Dan Heller) */
  2.  
  3. /* External function definitions for routines described in string(3).  */
  4. char    *strcat(), *strncat(), *strcpy(), *strncpy();
  5. int    strcmp(), strncmp(), strlen();
  6.  
  7. #ifdef SYSV
  8. #define sprintf Sprintf
  9. #define    index    strchr
  10. #define    rindex    strrchr
  11. #endif /* SYSV */
  12.  
  13. char 
  14.     *sprintf(),        /* Sprintf for sysv -- see end of misc.c */
  15.     *any(),         /* return first char in str2 that exists in str1 */
  16.     *index(), *rindex();
  17.