summaryrefslogtreecommitdiff
path: root/libc/include/wchar.yaml
diff options
context:
space:
mode:
authorPeter Collingbourne <peter@pcc.me.uk>2025-07-18 13:26:00 -0700
committerPeter Collingbourne <peter@pcc.me.uk>2025-07-18 13:26:00 -0700
commit9bf3524731070cadc6175707314f3b6ca37190d5 (patch)
tree86dcab7604336b01ae938fe81062c29ff69efba8 /libc/include/wchar.yaml
parent3a84c15cc13b6daf8e812592898ab6c7f19091a9 (diff)
parent4f43f0606c3d7e1ce6d069583b5e59f036e112ce (diff)
Created using spr 1.3.6-beta.1
Diffstat (limited to 'libc/include/wchar.yaml')
-rw-r--r--libc/include/wchar.yaml32
1 files changed, 32 insertions, 0 deletions
diff --git a/libc/include/wchar.yaml b/libc/include/wchar.yaml
index c6488fa93788..123d3440aeec 100644
--- a/libc/include/wchar.yaml
+++ b/libc/include/wchar.yaml
@@ -242,3 +242,35 @@ functions:
- type: wchar_t *__restrict
- type: const wchar_t *__restrict
- type: size_t
+ - name: wcstol
+ standards:
+ - stdc
+ return_type: long
+ arguments:
+ - type: const wchar_t *__restrict
+ - type: wchar_t **__restrict
+ - type: int
+ - name: wcstoll
+ standards:
+ - stdc
+ return_type: long long
+ arguments:
+ - type: const wchar_t *__restrict
+ - type: wchar_t **__restrict
+ - type: int
+ - name: wcstoul
+ standards:
+ - stdc
+ return_type: unsigned long
+ arguments:
+ - type: const wchar_t *__restrict
+ - type: wchar_t **__restrict
+ - type: int
+ - name: wcstoull
+ standards:
+ - stdc
+ return_type: unsigned long long
+ arguments:
+ - type: const wchar_t *__restrict
+ - type: wchar_t **__restrict
+ - type: int