X-Git-Url: http://git.jankratochvil.net/?p=reactos.git;a=blobdiff_plain;f=lib%2Fcrtdll%2Fwchar%2Fwcstol.c;fp=lib%2Fcrtdll%2Fwchar%2Fwcstol.c;h=d1a0b69c16818169de5e16d7dee70230410888f4;hp=fa95e967a6a2d52cd40ce0e9faf088b8cbfedc03;hb=7c0cf90e3b750f1f0dc83b2eec9e5c68a512c30f;hpb=ee8b63255465d8c28be3e7bd11628015708fc1ab diff --git a/lib/crtdll/wchar/wcstol.c b/lib/crtdll/wchar/wcstol.c index fa95e96..d1a0b69 100644 --- a/lib/crtdll/wchar/wcstol.c +++ b/lib/crtdll/wchar/wcstol.c @@ -1,6 +1,9 @@ #include +/* + * @implemented + */ long wcstol(const wchar_t* cp, wchar_t** endp, int base) { long result = 0, value; @@ -32,6 +35,9 @@ long wcstol(const wchar_t* cp, wchar_t** endp, int base) return result * sign; } +/* + * @implemented + */ unsigned long wcstoul(const wchar_t* cp, wchar_t** endp, int base) { unsigned long result = 0, value;