]> git.sur5r.net Git - cc65/blobdiff - src/cc65/litpool.h
Fix 32/64-bit int/pointer casts
[cc65] / src / cc65 / litpool.h
index a71c5841447ffe4aa2ce0f1a842e264967ce434d..6efdfb089ac685a46a8561f1f26021909d96c484 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                litpool.h                                 */
+/*                                 litpool.h                                 */
 /*                                                                           */
-/*             Literal string handling for the cc65 C compiler              */
+/*              Literal string handling for the cc65 C compiler              */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
@@ -46,7 +46,7 @@
 
 
 /*****************************************************************************/
-/*                                  Data                                    */
+/*                                   Data                                    */
 /*****************************************************************************/
 
 
@@ -92,7 +92,7 @@ unsigned GetLiteralSize (const Literal* L);
 
 
 /*****************************************************************************/
-/*                                  Code                                    */
+/*                                   Code                                    */
 /*****************************************************************************/
 
 
@@ -105,13 +105,13 @@ void PushLiteralPool (struct SymEntry* Func);
 
 LiteralPool* PopLiteralPool (void);
 /* Pop the last literal pool from TOS and activate it. Return the old
- * literal pool.
- */
+** literal pool.
+*/
 
 void MoveLiteralPool (LiteralPool* LocalPool);
 /* Move all referenced literals in LocalPool to the global literal pool. This
- * function will free LocalPool after moving the used string literals.
- */
+** function will free LocalPool after moving the used string literals.
+*/
 
 void OutputLiteralPool (void);
 /* Output the literal pool */
@@ -121,8 +121,8 @@ Literal* AddLiteral (const char* S);
 
 Literal* AddLiteralBuf (const void* Buf, unsigned Len);
 /* Add a buffer containing a literal string to the literal pool. Return the
- * literal.
- */
+** literal.
+*/
 
 Literal* AddLiteralStr (const StrBuf* S);
 /* Add a literal string to the literal pool. Return the literal. */
@@ -130,8 +130,5 @@ Literal* AddLiteralStr (const StrBuf* S);
 
 
 /* End of litpool.h */
-#endif
-
-
-
 
+#endif