diff options
author | Reiko Asakura | 2020-09-01 21:06:42 -0400 |
---|---|---|
committer | Reiko Asakura | 2020-09-01 21:06:42 -0400 |
commit | 8d723cbd325e1763f38225887a68c78fa541d4f8 (patch) | |
tree | b4819cfc35b7e1a7066e6ccdf160b803a711a3f2 /include/user | |
parent | Add SceVshBridge, SceAVConfig consts and protos (diff) | |
download | vds-libraries-8d723cbd325e1763f38225887a68c78fa541d4f8.tar.gz |
Add prototype for sceClibStrtoll
Diffstat (limited to 'include/user')
-rw-r--r-- | include/user/kernel/clib.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/user/kernel/clib.h b/include/user/kernel/clib.h index 209f1a2..0a2607b 100644 --- a/include/user/kernel/clib.h +++ b/include/user/kernel/clib.h @@ -46,6 +46,8 @@ int sceClibMemcmp(const void *s1, const void *s2, SceSize len); void *sceClibMemchr(const void *src, int ch, SceSize len); +long long sceClibStrtoll(const char *str, char **endptr, int base); + /* mspace functions */ typedef void* SceClibMspace; |