]> git.sur5r.net Git - cc65/blobdiff - libsrc/common/_scanf.h
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / common / _scanf.h
index f8aad5be3fc1b5daf08371da5b190e8ab05a3f52..0a8b09b7dec24741799e971e8a6ff5a74a1ff479 100644 (file)
@@ -27,9 +27,9 @@ typedef int __fastcall__ (*ungetfunc) (int c, void* data);
  * file, so check this when altering the structure.
  */
 struct scanfdata {
-    getfunc    get;    /* Pointer to input routine */
-    ungetfunc  unget;  /* Pointer to pushback routine */
-    void*      data;   /* Pointer to struct. used outside of _scanf() */
+    getfunc     get;    /* Pointer to input routine */
+    ungetfunc   unget;  /* Pointer to pushback routine */
+    void*       data;   /* Pointer to struct. used outside of _scanf() */
 };