]> git.sur5r.net Git - cc65/blobdiff - libsrc/common/_scanf.h
Don't pass mode argument to open() from _fopen().
[cc65] / libsrc / common / _scanf.h
index 0a8b09b7dec24741799e971e8a6ff5a74a1ff479..179be5de7f1b39b0205f1652197cf082d524da25 100644 (file)
@@ -1,9 +1,9 @@
 /*
- * _scanf.h
- *
- * (c) Copyright 2004, Ullrich von Bassewitz <uz@cc65.org>
- *
- */
+** _scanf.h
+**
+** (c) Copyright 2004, Ullrich von Bassewitz <uz@cc65.org>
+**
+*/
 
 
 
@@ -13,8 +13,8 @@
 
 
 /* Type of the function that is called to input data. The function will
- * return EOF if no more data is available.
- */
+** return EOF if no more data is available.
+*/
 typedef int __fastcall__ (*getfunc) (void* data);
 
 /* Type of the function that is called to put back unused data */
@@ -23,9 +23,9 @@ typedef int __fastcall__ (*ungetfunc) (int c, void* data);
 
 
 /* Control structure passed to the low level worker function.
- * Beware: This structure is mirrored in the _scanf.inc assembler include
- * file, so check this when altering the structure.
- */
+** Beware: This structure is mirrored in the _scanf.inc assembler include
+** file, so check this when altering the structure.
+*/
 struct scanfdata {
     getfunc     get;    /* Pointer to input routine */
     ungetfunc   unget;  /* Pointer to pushback routine */