home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GEMini Atari
/
GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso
/
zip
/
program
/
lynxlib.zoo
/
string.h
< prev
next >
Wrap
C/C++ Source or Header
|
1991-01-01
|
366b
|
27 lines
/* string.h header file for string functions */
#ifndef STRING_H
#define STRING_H
extern char
*strcpy(),
*strncpy(),
*strcat(),
*strncat(),
*strchr(),
*strrchr(),
*strpbrk(),
*strstr(),
*strtok(),
*strerror(),
*index(),
*rindex();
extern int
strcmp(),
strncmp(),
strlen();
extern unsigned int
strcspn(),
strspn();
#endif