home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / program / lynxlib.zoo / nstring.h < prev    next >
C/C++ Source or Header  |  1991-01-01  |  245b  |  20 lines

  1. #ifndef NSTRING_H
  2. #define NSTRING_H
  3.  
  4. #ifndef STRING_H
  5. #include <string.h>
  6. #endif
  7.  
  8. /* My own things */
  9. extern char
  10.     *pstrupper(),
  11.     *pstrlower(),
  12.     *pstrcpy(),
  13.     *pstrcat(),
  14.     *strdup(),
  15.     *pstrlen();
  16.  
  17.  
  18. #define sindex strstr
  19. #endif
  20.