Files
jabyengine/include/string.h
2024-03-31 23:49:32 -05:00

10 lines
241 B
C

#ifndef __STRING__H
#define __STRING__H
#include "PSX/jabyengine_defines.h"
START_C_FUNCTIONS
int strncmp(const char* s1, const char* s2, size_t n);
size_t strlen(const char* str);
END_C_FUNCTIONS
#endif // !__STRING__H