aboutsummaryrefslogtreecommitdiff
path: root/src/libc/include/string.h
blob: 7efda4ee1ae890c40ade192fbf47fcbd49011af7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _STRING_H
#define _STRING_H

#include <stddef.h>

int memcmp(const void *__s1, const void *__s2, size_t __n);
void *memcpy(void *__dst, const void *__src, size_t __n);
void *memset(void *__dst, int __c, size_t __n);
char *strchr(const char *__s, int __n);
size_t strlen(const char *__s);

#endif