Restructure the interrupt vector distribution for better matching of their inherit...
[lunaix-os.git] / lunaix-os / libs / klibc / stdio / sprintf.c
index a48ef1f0e9c37d0c061b04cbf9a64099e8a25f8b..460b206e08a1a131e1f76d0b4324c8fa0fda0625 100644 (file)
@@ -27,8 +27,6 @@ __sprintf_internal(char* buffer, char* fmt, size_t max_len, va_list vargs)
     // This sprintf just a random implementation I found it on Internet . lol.
     //      Of course, with some modifications for porting to LunaixOS :)
 
-    // TODO: support floating point.
-
     char numbuf[NUMBUFSIZ];
     uint32_t ptr = 0;
     for (; *fmt; ++fmt) {