]> git.sur5r.net Git - cc65/blobdiff - src/ar65/objdata.h
Merge pull request #429 from pfusik/opt-stdfunc
[cc65] / src / ar65 / objdata.h
index 5d191339b774fb45a1906dc3f162b1607c12721d..3ae8e294978d031bdd3015b099627f0aa6f69f0d 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                objdata.h                                 */
+/*                                 objdata.h                                 */
 /*                                                                           */
-/*             Handling object file data for the ar65 archiver              */
+/*              Handling object file data for the ar65 archiver              */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
 
 
 /*****************************************************************************/
-/*                                          Data                                    */
+/*                                   Data                                    */
 /*****************************************************************************/
 
 
 
 /* Values for the Flags field */
-#define        OBJ_HAVEDATA    0x0001          /* The object data is in the tmp file */
+#define OBJ_HAVEDATA    0x0001          /* The object data is in the tmp file */
 
 
 /* Internal structure holding object file data */
 typedef struct ObjData ObjData;
 struct ObjData {
-    char*              Name;           /* Module name */
+    char*               Name;           /* Module name */
 
     /* Index entry */
-    unsigned           Flags;
-    unsigned long      MTime;          /* Modifiation time of object file */
-    unsigned long      Start;          /* Start offset of data in library */
-    unsigned long      Size;           /* Size of data in library */
+    unsigned            Flags;
+    unsigned long       MTime;          /* Modifiation time of object file */
+    unsigned long       Start;          /* Start offset of data in library */
+    unsigned long       Size;           /* Size of data in library */
 
     /* Object file header */
     ObjHeader           Header;
 
     /* Basic data needed for simple checks */
     Collection          Strings;        /* Strings from the object file */
-    Collection          Exports;               /* Exports list from object file */
+    Collection          Exports;        /* Exports list from object file */
 };
 
 
@@ -81,7 +81,7 @@ extern Collection       ObjPool;
 
 
 /*****************************************************************************/
-/*                                          Code                                    */
+/*                                   Code                                    */
 /*****************************************************************************/
 
 
@@ -97,8 +97,8 @@ void ClearObjData (ObjData* O);
 
 ObjData* FindObjData (const char* Module);
 /* Search for the module with the given name and return it. Return NULL if the
- * module is not in the list.
- */
+** module is not in the list.
+*/
 
 void DelObjData (const char* Module);
 /* Delete the object module from the list */
@@ -108,6 +108,3 @@ void DelObjData (const char* Module);
 /* End of objdata.h */
 
 #endif
-
-
-