home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / ncftp-2.3.0-src.tgz / tar.out / contrib / ncftp / Strn.h < prev    next >
C/C++ Source or Header  |  1996-09-28  |  325b  |  15 lines

  1. /* Strn.h */
  2.  
  3. #ifndef _Strn_h_
  4. #define _Strn_h_ 1
  5.  
  6. char *Strncat(char *, char *, size_t);
  7. char *Strncpy(char *, char *, size_t);
  8.  
  9. #define STRNCPY(d,s) Strncpy((char *) (d), (char *) (s), (size_t) sizeof(d))
  10. #define STRNCAT(d,s) Strncat((char *) (d), (char *) (s), (size_t) sizeof(d))
  11.  
  12. #endif    /* _Strn_h_ */
  13.  
  14. /* eof Strn.h */
  15.