mirror of
https://github.com/HarbourMasters/Starship.git
synced 2025-01-24 05:55:01 +03:00
12 lines
202 B
C
12 lines
202 B
C
|
#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
|