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