You've already forked 2ship2harkinian-Android
mirror of
https://github.com/izzy2lost/2ship2harkinian-Android.git
synced 2026-03-10 11:20:47 -07:00
Co-authored-by: Louis <35883445+louist103@users.noreply.github.com> Co-authored-by: Nicholas Estelami <NEstelami@users.noreply.github.com> Co-authored-by: Random06457 <28494085+Random06457@users.noreply.github.com>
13 lines
221 B
C
13 lines
221 B
C
#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
|