2023-10-18 14:57:01 +03:00
|
|
|
#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);
|
|
|
|
|
|
|
|
|
2023-10-23 23:02:01 +03:00
|
|
|
#endif
|