diff options
Diffstat (limited to 'include/user/kernel/clib.h')
-rw-r--r-- | include/user/kernel/clib.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/user/kernel/clib.h b/include/user/kernel/clib.h new file mode 100644 index 0000000..7f3ec34 --- /dev/null +++ b/include/user/kernel/clib.h @@ -0,0 +1,12 @@ +#ifndef _PSP2_KERNEL_CLIB_H_ +#define _PSP2_KERNEL_CLIB_H_ + +#include <psp2/types.h> +#include <stdarg.h> + +int sceClibStrcmp(const char *, const char *); + +int sceClibSnprintf(char *, SceSize, const char *, ...); +int sceClibVsnprintf(char *, SceSize, const char *, va_list); + +#endif |