]> git.sur5r.net Git - cc65/blobdiff - libsrc/common/_printf.h
cleanups and add more comments
[cc65] / libsrc / common / _printf.h
index 03e8f7307be596bd83b8a9c020ce02caa54f9fc0..e965b0d8529f9b9c2cb9752616ff296dda6ab698 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * _printf.h
  *
- * (C) Copyright 1998 Ullrich von Bassewitz (uz@ibb.schwaben.com)
+ * (C) Copyright 1998 Ullrich von Bassewitz (uz@cc65.org)
  *
  */
 
@@ -25,16 +25,16 @@ 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 */
 };
 
 
 
 /* Internal formatting routine */
-int _printf (struct outdesc* d, const char* format, va_list ap);
+void __fastcall__ _printf (struct outdesc* d, const char* format, va_list ap);