]> git.sur5r.net Git - cc65/blobdiff - libsrc/common/vfscanf.s
Merge remote-tracking branch 'irgendwer/AtariOS_Structure' into master
[cc65] / libsrc / common / vfscanf.s
index 44b05ef838e7af002ebe90bd6bcf0bf99565d29c..c7d6e5564380da25a3a64ed57063695b3d74f662 100644 (file)
@@ -5,7 +5,7 @@
 ; 2004-12-21, Greg King
 ;
 
-       .export         _vfscanf
+        .export         _vfscanf
         .import         _fgetc, _ungetc, _ferror
 
         .include        "zeropage.inc"
@@ -22,8 +22,8 @@ count   :=      ptr3            ; Result of scan
 
 .data
 d:      .addr   _fgetc          ; GET
-       .addr   _ungetc         ; UNGET
-               .addr   0               ; data
+        .addr   _ungetc         ; UNGET
+        .addr   0               ; data
 
 
 ; ----------------------------------------------------------------------------
@@ -31,9 +31,9 @@ d:      .addr   _fgetc          ; GET
 ; /* Standard C function */
 ; {
 ;     /* Initialize the data struct. We do only need the given file as user data,
-;      * because the (getfunc) and (ungetfunc) functions are crafted so that they
-;      * match the standard-I/O fgetc() and ungetc().
-;      */
+;     ** because the (getfunc) and (ungetfunc) functions are crafted so that they
+;     ** match the standard-I/O fgetc() and ungetc().
+;     */
 ;     static struct scanfdata d = {
 ;         (  getfunc)  fgetc,
 ;         (ungetfunc) ungetc