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

@@ -81,8 +81,8 @@ void SetOutputName (const char* Name)
void MakeDefaultOutputName (const char* InputFilename)
/* If the name of the output file is empty or NULL, the name of the output
* file is derived from the input file by adjusting the file name extension.
*/
** file is derived from the input file by adjusting the file name extension.
*/
{
if (OutputFilename == 0 || *OutputFilename == '\0') {
/* We don't have an output file for now */
@@ -111,8 +111,8 @@ void OpenOutputFile ()
void OpenDebugOutputFile (const char* Name)
/* Open an output file for debugging purposes. Will call Fatal() in case of
* failures.
*/
** failures.
*/
{
/* Output file must not be open and we must have a name*/
PRECONDITION (OutputFile == 0);
@@ -147,8 +147,8 @@ void CloseOutputFile ()
int WriteOutput (const char* Format, ...)
/* Write to the output file using printf like formatting. Returns the number
* of chars written.
*/
** of chars written.
*/
{
va_list ap;
int CharCount;