summaryrefslogtreecommitdiff
path: root/include/MSL_C/string.h
blob: 83b7bd0f663eac4452268b095b50bfb7e26f0826 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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);

#ifdef __cplusplus
}
#endif

#endif //POKEREVO_STRING_H