branch update for HEAD-2003091401
[reactos.git] / lib / msvcrt / stdlib / itow.c
index 3f9be60..1939d1a 100644 (file)
@@ -17,6 +17,9 @@
 #include <msvcrt/internal/file.h>
 
 
+/*
+ * @implemented
+ */
 wchar_t* _itow(int value, wchar_t* string, int radix)
 {
     wchar_t     tmp [33];
@@ -63,6 +66,9 @@ wchar_t* _itow(int value, wchar_t* string, int radix)
     return string;
 }
 
+/*
+ * @implemented
+ */
 wchar_t* _ltow(long value, wchar_t* string, int radix)
 {
     wchar_t tmp [33];
@@ -108,6 +114,9 @@ wchar_t* _ltow(long value, wchar_t* string, int radix)
     return string;
 }
 
+/*
+ * @unimplemented
+ */
 wchar_t* _ultow(unsigned long value, wchar_t* string, int radix)
 {
     wchar_t tmp [33];