1 /* atari_st/string.h: string include file for MWC
2 
3    Copyright (c) 1989-94 Stephen A Jacobs, James E. Wilson
4 
5    This software may be copied and distributed for educational, research, and
6    not for profit purposes provided that this copyright and statement are
7    included in all such copies. */
8 
9 #ifndef STRING_H
10 #define STRING_H
11 
12 char *index();
13 char *rindex();
14 char *strcat();
15 int strcmp();
16 char *strcpy();
17 int strlen();
18 char *strncat();
19 int strncmp();
20 char *strncpy();
21 char *memchr();
22 int memcmp();
23 char *memcpy();
24 char *memset();
25 char *strchr();
26 unsigned int strcspn();
27 char *strerror();
28 char *strpbrk();
29 char *strrchr();
30 unsigned int strspn();
31 char *strstr();
32 char *strtok();
33 
34 #endif
35