summaryrefslogtreecommitdiff
path: root/include/libc/string.h
blob: 3f9a5cee71da83bb26e7fa49bf39ef57cc6755fa (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef STRING_H
#define STRING_H

#include "stddef.h"

char* strchr(const char*, int);
size_t strlen(const char*);

void* memcpy(void*, const void*, size_t);

#endif