FreeCalypso > hg > freecalypso-tools
diff target-utils/include/strings.h @ 97:202b5aa009bc
target-utils/include: our own ctype.h and strings.h added
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 31 Oct 2016 23:49:11 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/target-utils/include/strings.h Mon Oct 31 23:49:11 2016 +0000 @@ -0,0 +1,15 @@ +/* + * External function definitions + * for routines described in string(3). + */ +char *strcat(); +char *strncat(); +int strcmp(); +int strncmp(); +int strcasecmp(); +int strncasecmp(); +char *strcpy(); +char *strncpy(); +int strlen(); +char *index(); +char *rindex();