blob: bb8ba0da8693f677067c47828d67ad737bc2a809 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef _PSP2_KERNEL_CLIB_H_
#define _PSP2_KERNEL_CLIB_H_
#include <psp2/types.h>
#include <stdarg.h>
#ifdef __cplusplus
extern "C" {
#endif
int sceClibStrcmp(const char *, const char *);
int sceClibSnprintf(char *, SceSize, const char *, ...);
int sceClibVsnprintf(char *, SceSize, const char *, va_list);
#ifdef __cplusplus
}
#endif
#endif /* _PSP2_KERNEL_CLIB_H_ */
|