update for HEAD-2003091401
[reactos.git] / lib / crtdll / stdlib / itoa.c
index 3a465d3..245cbbe 100644 (file)
 #include <msvcrt/internal/file.h>
 
 
+/*
+ * @implemented
+ *
+ * this function is now forwarded to NTDLL._itoa to reduce code duplication
+ */
+#if 0
 char* _itoa(int value, char* string, int radix)
 {
   char tmp[33];
@@ -56,7 +62,14 @@ char* _itoa(int value, char* string, int radix)
   *sp = 0;
   return string;
 }
+#endif
 
+/*
+ * @implemented
+ *
+ * this function is now forwarded to NTDLL._ltoa to reduce code duplication
+ */
+#if 0
 char* _ltoa(long value, char* string, int radix)
 {
   char tmp[33];
@@ -98,7 +111,14 @@ char* _ltoa(long value, char* string, int radix)
   *sp = 0;
   return string;
 }
+#endif
 
+/*
+ * @implemented
+ *
+ * this function is now forwarded to NTDLL._ultoa to reduce code duplication
+ */
+#if 0
 char* _ultoa(unsigned long value, char* string, int radix)
 {
   char tmp[33];
@@ -132,3 +152,4 @@ char* _ultoa(unsigned long value, char* string, int radix)
   *sp = 0;
   return string;
 }
+#endif