home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / pc / source / star.lzh / star.1 / observe / Astring.h next >
Encoding:
C/C++ Source or Header  |  1990-03-27  |  306 b   |  19 lines

  1. /* Selfmade strings.h which is not included in MWC */
  2. extern    char    *strcat();
  3. extern    char    *strncat();
  4.  
  5. extern    int    strcmp();
  6. extern    int    strncmp();
  7.  
  8. #ifndef GEMDOS
  9. #define streq    !strcmp
  10. #endif
  11.  
  12. extern    char    *strcpy();
  13. extern    char    *strncpy();
  14.  
  15. extern    int    strlen();
  16.  
  17. extern char    *index();
  18. extern char    *rindex();
  19.