libshit

Just some random shit
git clone https://git.neptards.moe/neptards/libshit.git
Log | Files | Refs | Submodules | README | LICENSE

string.h (262B)


      1 #pragma once
      2 
      3 #include_next <string.h>
      4 
      5 #include <psp2/kernel/clib.h>
      6 
      7 #ifdef __cplusplus
      8 extern "C"
      9 {
     10 #endif
     11 
     12 #define strnlen sceClibStrnlen
     13 
     14 typedef int errno_t;
     15 errno_t strerror_s(char*, size_t, errno_t) __attribute__((nothrow));
     16 
     17 #ifdef __cplusplus
     18 }
     19 #endif