branch update for HEAD-2003091401
[reactos.git] / lib / msvcrt / stdlib / witoa.c
index 6ff4d2f..4e6d85a 100644 (file)
@@ -15,6 +15,9 @@
 #include <msvcrt/internal/file.h>
 
 
+/*
+ * @implemented
+ */
 char* _i64toa(__int64 value, char* string, int radix)
 {
   char tmp[65];
@@ -57,6 +60,9 @@ char* _i64toa(__int64 value, char* string, int radix)
   return string;
 }
 
+/*
+ * @implemented
+ */
 char* _ui64toa(unsigned __int64 value, char* string, int radix)
 {
   char tmp[65];