Output library information to the debug file.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5127 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2011-08-07 11:33:28 +00:00
parent b418fdf985
commit af3a5e6e15
6 changed files with 110 additions and 23 deletions

View File

@@ -6,10 +6,10 @@
/* */
/* */
/* */
/* (C) 1998-2005 Ullrich von Bassewitz */
/* R<EFBFBD>merstra<EFBFBD>e 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* (C) 1998-2011, Ullrich von Bassewitz */
/* Roemerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
@@ -39,7 +39,18 @@
/*****************************************************************************/
/* Code */
/* Data */
/*****************************************************************************/
/* Opaque structure */
struct Library;
/*****************************************************************************/
/* Code */
/*****************************************************************************/
@@ -64,6 +75,15 @@ void LibEndGroup (void);
void LibCheckGroup (void);
/* Check if there are open library groups */
const char* GetLibFileName (const struct Library* L);
/* Get the name of a library */
unsigned GetLibId (const struct Library* L);
/* Get the id of a library file. */
void PrintDbgLibraries (FILE* F);
/* Output the libraries to a debug info file */
/* End of library.h */