2023-09-02 15:34:29 -04:00
|
|
|
#ifndef LIBC_STRING_H
|
|
|
|
|
#define LIBC_STRING_H
|
|
|
|
|
|
|
|
|
|
#include "libc/stddef.h"
|
|
|
|
|
|
2024-01-05 10:15:41 -06:00
|
|
|
#ifdef __sgi
|
2023-09-02 15:34:29 -04:00
|
|
|
const char* strchr(const char* s, int c);
|
|
|
|
|
size_t strlen(const char* s);
|
|
|
|
|
void* memcpy(void* s1, const void* s2, size_t n);
|
2024-01-05 10:15:41 -06:00
|
|
|
#endif
|
2023-09-02 15:34:29 -04:00
|
|
|
|
|
|
|
|
#endif
|