ソースを参照

LibC: Stub out wcstoull

Tim Schumacher 3 年 前
コミット
783ddd261d
2 ファイル変更7 行追加0 行削除
  1. 6 0
      Userland/Libraries/LibC/wchar.cpp
  2. 1 0
      Userland/Libraries/LibC/wchar.h

+ 6 - 0
Userland/Libraries/LibC/wchar.cpp

@@ -423,4 +423,10 @@ unsigned long wcstoul(const wchar_t*, wchar_t**, int)
     dbgln("TODO: Implement wcstoul()");
     TODO();
 }
+
+unsigned long long wcstoull(const wchar_t*, wchar_t**, int)
+{
+    dbgln("TODO: Implement wcstoull()");
+    TODO();
+}
 }

+ 1 - 0
Userland/Libraries/LibC/wchar.h

@@ -48,5 +48,6 @@ wchar_t* wmemcpy(wchar_t*, const wchar_t*, size_t);
 wchar_t* wmemset(wchar_t*, wchar_t, size_t);
 wchar_t* wmemmove(wchar_t*, const wchar_t*, size_t);
 unsigned long wcstoul(const wchar_t*, wchar_t**, int);
+unsigned long long wcstoull(const wchar_t*, wchar_t**, int);
 
 __END_DECLS