blob: 50e13fd1d7a48f20bce3c7c4ec2281364b0dbb7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef LIBC_STRING_H
#define LIBC_STRING_H
#include "stddef.h"
const char* strchr(const char* s, int c);
size_t strlen(const char* s);
void* memcpy(void* s1, const void* s2, size_t n);
#endif
|