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