branch update for HEAD-2003091401
[reactos.git] / lib / crtdll / stdlib / itow.c
index 730a6fb..36f9708 100644 (file)
 #include <msvcrt/internal/file.h>
 
 
+/*
+ * @implemented
+ *
+ * this function is now forwarded to NTDLL._itow to reduce code duplication
+ */
+#if 0
 wchar_t* _itow(int value, wchar_t* string, int radix)
 {
     wchar_t     tmp [33];
@@ -62,7 +68,14 @@ wchar_t* _itow(int value, wchar_t* string, int radix)
     *sp = (wchar_t) 0;
     return string;
 }
+#endif
 
+/*
+ * @implemented
+ *
+ * this function is now forwarded to NTDLL._ltow to reduce code duplication
+ */
+#if 0
 wchar_t* _ltow(long value, wchar_t* string, int radix)
 {
     wchar_t         tmp [33];
@@ -107,7 +120,14 @@ wchar_t* _ltow(long value, wchar_t* string, int radix)
     *sp = (wchar_t) 0;
     return string;
 }
+#endif
 
+/*
+ * @implemented
+ *
+ * this function is now forwarded to NTDLL._ultow to reduce code duplication
+ */
+#if 0
 wchar_t* _ultow(unsigned long value, wchar_t* string, int radix)
 {
     wchar_t         tmp [33];
@@ -145,3 +165,4 @@ wchar_t* _ultow(unsigned long value, wchar_t* string, int radix)
     *sp = (wchar_t) 0;
     return string;
 }
+#endif