diff options
author | Reiko Asakura | 2020-09-05 16:56:36 -0400 |
---|---|---|
committer | Reiko Asakura | 2020-09-05 16:56:36 -0400 |
commit | a9f635e09579bd7494cfd34e0d664fba8b0c8a9e (patch) | |
tree | c0f653f156d43c5edc8693684826a2eca6618dd2 /include/user | |
parent | Add thread related function and types (diff) | |
download | vds-libraries-a9f635e09579bd7494cfd34e0d664fba8b0c8a9e.tar.gz |
Add ScePafStdc function prototypes
Diffstat (limited to '')
-rw-r--r-- | include/user/paf.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/user/paf.h b/include/user/paf.h index b742a9b..2cf7444 100644 --- a/include/user/paf.h +++ b/include/user/paf.h @@ -1,6 +1,7 @@ #ifndef _PSP2_PAF_H_ #define _PSP2_PAF_H_ +#include <stdarg.h> #include <wchar.h> #include <psp2/types.h> #include <psp2/ces/error.h> @@ -51,6 +52,8 @@ char *sce_paf_strrchr(const char *str, int character); /* __attribute__((__format__(__wprintf__, 3, 4))) */ int sce_paf_swprintf(wchar_t *buffer, size_t bufsz, const wchar_t *format, ...); +int sce_paf_vswprintf(wchar_t *buffer, size_t bufsz, const wchar_t *format, va_list vlist); + wint_t sce_paf_towlower(wint_t wc); wchar_t *sce_paf_wcscat(wchar_t *dest, const wchar_t *src); |