Add creation time in the header

git-svn-id: svn://svn.cc65.org/cc65/trunk@3390 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2005-02-17 17:37:17 +00:00
parent 0eec7d8a87
commit 531320e242
4 changed files with 19 additions and 8 deletions

View File

@@ -74,10 +74,12 @@ static void PageHeader (void)
/* Print a page header */
{
fprintf (F,
"; da65 V%u.%u.%u - (C) Copyright 2000-2005 Ullrich von Bassewitz\n"
"; da65 V%u.%u.%u - (C) Copyright 2000-2005, Ullrich von Bassewitz\n"
"; Created: %s\n"
"; Input file: %s\n"
"; Page: %u\n\n",
VER_MAJOR, VER_MINOR, VER_PATCH,
Now,
InFile,
Page);
}
@@ -99,7 +101,7 @@ void OpenOutput (const char* Name)
/* Output the header and initialize stuff */
PageHeader ();
Line = 4;
Line = 5;
Col = 1;
}
@@ -152,7 +154,7 @@ void LineFeed (void)
}
++Page;
PageHeader ();
Line = 4;
Line = 5;
}
Col = 1;
}