blob: 2332cd5f6c28f1730bf7a1780882be8b9555f833 (
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"
#ifdef __sgi
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
#endif
|