Files
2ship2harkinian-Android/mm/include/libc/string.h
T

13 lines
221 B
C
Raw Normal View History

#ifndef LIBC_STRING_H
#define LIBC_STRING_H
#include "libc/stddef.h"
2024-01-05 10:15:41 -06:00
#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);
2024-01-05 10:15:41 -06:00
#endif
#endif