diff options
Diffstat (limited to 'memory/wrap/wcstoll.c')
-rw-r--r-- | memory/wrap/wcstoll.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/memory/wrap/wcstoll.c b/memory/wrap/wcstoll.c new file mode 100644 index 0000000..e54272c --- /dev/null +++ b/memory/wrap/wcstoll.c @@ -0,0 +1,8 @@ +#include "memory.h" +#include <wchar.h> + +long long _wcstoll_wrap(wchar_t const *restrict string, + wchar_t **restrict invalid, int base) +{ + return wcstoll(string, invalid, base); +} |