blob: 7f3ec3450cb9ef952153c50c7e171dffba962eba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
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
|