Fix maximizing problem introduced by r17764
[reactos.git] / posix / include / string.h
1 /* $Id: string.h,v 1.4 2002/10/29 04:45:19 rex Exp $
2 */
3 /*
4 * string.h
5 *
6 * string operations. Conforming to the Single UNIX(r) Specification
7 * Version 2, System Interface & Headers Issue 5
8 *
9 * This file is part of the ReactOS Operating System.
10 *
11 * Contributors:
12 * Created by KJK::Hyperion <noog@libero.it>
13 *
14 * THIS SOFTWARE IS NOT COPYRIGHTED
15 *
16 * This source code is offered for use in the public domain. You may
17 * use, modify or distribute it freely.
18 *
19 * This code is distributed in the hope that it will be useful but
20 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
21 * DISCLAMED. This includes but is not limited to warranties of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
23 *
24 */
25 #ifndef __STRING_H_INCLUDED__ /* replace with the appropriate tag */
26 #define __STRING_H_INCLUDED__ /* replace with the appropriate tag */
27
28 /* INCLUDES */
29 #include <stddef.h>
30
31 /* OBJECTS */
32
33 /* TYPES */
34
35 /* CONSTANTS */
36
37 /* PROTOTYPES */
38 void *memccpy(void *, const void *, int, size_t);
39 void *memchr(const void *, int, size_t);
40 int memcmp(const void *, const void *, size_t);
41 void *memcpy(void *, const void *, size_t);
42 void *memmove(void *, const void *, size_t);
43 void *memset(void *, int, size_t);
44 char *strcat(char *, const char *);
45 char *strchr(const char *, int);
46 int strcmp(const char *, const char *);
47 int strcoll(const char *, const char *);
48 char *strcpy(char *, const char *);
49 size_t strcspn(const char *, const char *);
50 char *strdup(const char *);
51 char *strerror(int);
52 size_t strlen(const char *);
53 char *strncat(char *, const char *, size_t);
54 int strncmp(const char *, const char *, size_t);
55 char *strncpy(char *, const char *, size_t);
56 char *strpbrk(const char *, const char *);
57 char *strrchr(const char *, int);
58 size_t strspn(const char *, const char *);
59 char *strstr(const char *, const char *);
60 char *strtok(char *, const char *);
61 char *strtok_r(char *, const char *, char **);
62 size_t strxfrm(char *, const char *, size_t);
63
64 /* MACROS */
65
66 #endif /* __STRING_H_INCLUDED__ */ /* replace with the appropriate tag */
67
68 /* EOF */
69