create string.h

This commit is contained in:
Alejandro Javier Asenjo Nitti 2023-10-18 08:57:01 -03:00
parent 12f1704052
commit 511d895ec7

12
include/libc/string.h Normal file
View File

@ -0,0 +1,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