This commit is contained in:
seta75D
2021-10-11 18:37:13 -03:00
commit ff309bfe1c
14130 changed files with 3180272 additions and 0 deletions

22
include/strings.h Normal file
View File

@@ -0,0 +1,22 @@
/* @(#)strings.h 1.1 94/10/31 SMI; from UCB 4.1 83/05/26 */
/*
* External function definitions
* for routines described in string(3).
*/
#ifndef _strings_h
#define _strings_h
char *strcat();
char *strncat();
int strcmp();
int strncmp();
int strcasecmp();
char *strcpy();
char *strncpy();
int strlen();
char *index();
char *rindex();
#endif /*!_strings_h*/