4 * Copyright (C) 2017 Aleksandar Andrejevic <theflash@sdf.lonestar.org>
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as
8 * published by the Free Software Foundation, either version 3 of the
9 * License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
28 char *strcpy(char *destination, const char *source);
29 char *strncpy(char *destination, const char *source, size_t n);
30 int strcmp(const char *str1, const char *str2);
31 int stricmp(const char *str1, const char *str2);
32 int strncmp(const char *str1, const char *str2, size_t n);
33 char *strstr(const char *haystack, const char *needle);
34 char *strchr(const char *str, char c);
35 char *strrchr(const char *str, char c);
36 char *strcat(char *destination, const char *source);
37 char *strncat(char *destination, const char *source, size_t n);
38 char *strdup(const char *source);
39 char *strtok(char *str, const char *delimiters);
40 char *strtok_r(char *str, const char *delimiters, char **endptr);
41 size_t strlen(const char *str);
42 void strrev(char *str);
43 void memset(void *ptr, int value, size_t n);
44 void memcpy(void *destination, const void *source, size_t n);
45 void memmove(void *destination, const void *source, size_t n);
46 int memcmp(const void *mem1, const void *mem2, size_t n);