]> git.sur5r.net Git - cc65/blobdiff - src/common/filepos.h
Renamed to '--no-std-lib'
[cc65] / src / common / filepos.h
index b9b2e402437e94fcad7f2a8c89532cc3f0c07aaf..d6368ad6f63b3d2c8b5030be850ee1d247e35882 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                 filepos.h                                */
+/*                                 filepos.h                                 */
 /*                                                                           */
-/*                       File position data structure                       */
+/*                       File position data structure                        */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
@@ -39,7 +39,7 @@
 
 
 /*****************************************************************************/
-/*                                          Data                                    */
+/*                                   Data                                    */
 /*****************************************************************************/
 
 
@@ -47,9 +47,9 @@
 /* Type of a file position */
 typedef struct FilePos FilePos;
 struct FilePos {
-    unsigned long   Line;               /* Line */
-    unsigned        Col;                /* Column */
-    unsigned        Name;               /* File */
+    unsigned    Line;               /* Line */
+    unsigned    Col;                /* Column */
+    unsigned    Name;               /* File */
 };
 
 /* Initializer for a FilePos */
@@ -58,7 +58,7 @@ struct FilePos {
 
 
 /*****************************************************************************/
-/*                                          Code                                    */
+/*                                   Code                                    */
 /*****************************************************************************/
 
 
@@ -68,15 +68,12 @@ void InitFilePos (FilePos* P);
 
 int CompareFilePos (const FilePos* P1, const FilePos* P2);
 /* Compare two file positions. Return zero if both are equal, return a value
- * > 0 if P1 is greater and P2, and a value < 0 if P1 is less than P2. The
- * compare rates file index over line over column.
- */
+** > 0 if P1 is greater and P2, and a value < 0 if P1 is less than P2. The
+** compare rates file index over line over column.
+*/
 
 
 
 /* End of filepos.h */
 
 #endif
-
-
-