home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / Graphics / ToyViewer-2.6a / src / strfunc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-28  |  358 b   |  12 lines

  1. #include  "common.h"
  2.  
  3. char *str_dup(const char *src);
  4. int dircopy(char *dst, const char *src, int);
  5. int getExtension(char const *);
  6. void str_lcat(char *, const char *, int);
  7. const char *begin_comm(const char *, BOOL);
  8. void comment_copy(char *, const char *);
  9. const char *key_comm(const commonInfo *);
  10.  
  11. #define  comm_cat(mem, s)    str_lcat(mem, s, MAX_COMMENT)
  12.