You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#pragma once
|
|
|
|
#include_next <string.h>
|
|
|
|
#include <psp2/kernel/clib.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
#define strnlen sceClibStrnlen
|
|
|
|
typedef int errno_t;
|
|
errno_t strerror_s(char*, size_t, errno_t) __attribute__((nothrow));
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|