Changed multi-line C comments into another style.

The left side doesn't look unbalanced.
This commit is contained in:
Greg King
2014-06-30 05:10:35 -04:00
parent 132d57f1ad
commit 0390c34e88
502 changed files with 8869 additions and 8884 deletions

View 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 */