]> git.sur5r.net Git - cc65/blobdiff - libsrc/common/_printf.h
cleanups and add more comments
[cc65] / libsrc / common / _printf.h
index 03869747835e6d1b5faab22a83373273f72bf64b..e965b0d8529f9b9c2cb9752616ff296dda6ab698 100644 (file)
@@ -25,10 +25,10 @@ typedef void (*outfunc) (struct outdesc* desc, const char* buf, unsigned count);
  * so check this when altering the structure.
  */
 struct outdesc {
-    int                ccount;         /* Character counter */
-    outfunc            fout;           /* Routine used to output data */
-    void*      ptr;            /* Data internal to print routine */
-    unsigned   uns;            /* Data internal to print routine */
+    int         ccount;         /* Character counter */
+    outfunc     fout;           /* Routine used to output data */
+    void*       ptr;            /* Data internal to print routine */
+    unsigned    uns;            /* Data internal to print routine */
 };