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 @@
/*
* _printf.h
*
* (C) Copyright 1998 Ullrich von Bassewitz (uz@cc65.org)
*
*/
** _printf.h
**
** (C) Copyright 1998 Ullrich von Bassewitz (uz@cc65.org)
**
*/
@@ -21,9 +21,9 @@ typedef void (*outfunc) (struct outdesc* desc, const char* buf, unsigned count);
/* Control structure passed to the low level worker function.
* Beware: This function will access the structure on the assembly level,
* so check this when altering the structure.
*/
** Beware: This function will access the structure on the assembly level,
** so check this when altering the structure.
*/
struct outdesc {
int ccount; /* Character counter */
outfunc fout; /* Routine used to output data */