summaryrefslogtreecommitdiff
path: root/include/MSL_C/string.h
blob: 7b4755c5a07a5bcd066b1a765ad0c162b025aa4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef POKEREVO_STRING_H
#define POKEREVO_STRING_H

#ifdef __cplusplus
extern "C" {
#endif

void *memset(void *s, int c, size_t n);
void *memmove(void *dest, const void *src, size_t n);
void *memcpy(void *dest, const void *src, size_t n);
int strcmp(const char *s1, const char *s2);
int strncmp(const char *s1, const char *s2, size_t n);
char *strcpy(char *dest, const char *src);
char *strncpy(char *dest, const char *src, size_t n);
char *strcat(char *dest, const char *src);
char *strncat(char *dest, const char *src, size_t n);

#ifdef __cplusplus
}
#endif

#endif //POKEREVO_STRING_H