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 >
Wrap
C/C++ Source or Header
|
1996-09-28
|
325b
|
15 lines
/* Strn.h */
#ifndef _Strn_h_
#define _Strn_h_ 1
char *Strncat(char *, char *, size_t);
char *Strncpy(char *, char *, size_t);
#define STRNCPY(d,s) Strncpy((char *) (d), (char *) (s), (size_t) sizeof(d))
#define STRNCAT(d,s) Strncat((char *) (d), (char *) (s), (size_t) sizeof(d))
#endif /* _Strn_h_ */
/* eof Strn.h */