mirror of
https://github.com/izzy2lost/Starship.git
synced 2026-03-26 16:57:45 -07:00
13 lines
198 B
C
13 lines
198 B
C
#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
|