summaryrefslogtreecommitdiff
path: root/riscv/riscv-probe/libfemto/include/string.h
blob: 6572d23e59556b519a1299091766d44d50737bd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#ifdef __cplusplus
extern "C" {
#endif

#include <stddef.h>

void *memchr(const void *s, int c, size_t n);
int memcmp(const void *, const void *, size_t);
void *memcpy(void *, const void *, size_t);
void *memset(void *, int, size_t);
char *strchr(const char *s, int c);
int strcmp(const char *, const char *);
size_t strlen(const char *);
int strncmp(const char *, const char *, size_t);
char *strncpy(char *, const char *, size_t);

#ifdef __cplusplus
}
#endif