aboutsummaryrefslogtreecommitdiffstats
path: root/memory/wtoi.c
blob: 9510d3fe39099ad840e877f3a14902998300f33d (plain) (blame)
1
2
3
#include "memory.h"

int wtoi(wchar_t const *string) { return (int)_wcstol_wrap(string, NULL, 10); }