blob: 9c6a1cb087d3b531126e2460238276f28a58e49e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef LIBC_STRING_H
#define LIBC_STRING_H
#include "libc/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
|