blob: a36f1ac4ca3a8cb03064c81b9336141b8ff364bb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#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_ */
/** \} */
|