diff options
author | Glenn Anderson | 2015-08-14 23:27:02 -0400 |
---|---|---|
committer | Glenn Anderson | 2015-08-14 23:27:02 -0400 |
commit | 1f6cb4f3cbf7ae615d12c1dd66136347247ab7a6 (patch) | |
tree | ca88156373140a2081e64ae091d05555adadad69 /include/user/kernel/clib.h | |
download | vds-libraries-1f6cb4f3cbf7ae615d12c1dd66136347247ab7a6.tar.gz |
Initial commit. Added headers from psp2sdk.
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 |