]> git.sur5r.net Git - cc65/blobdiff - src/cc65/lineinfo.h
Fixed the CBM screen-code C header.
[cc65] / src / cc65 / lineinfo.h
index 25c4e75561167b760885cda3d3fc36dcaf3c5f74..8dbe06846ff9f2885bf4709a60506b8e1c95b53b 100644 (file)
@@ -61,8 +61,8 @@ struct IFile;
 
 
 /* The text for the actual line is allocated at the end of the structure, so
- * the size of the structure varies.
- */
+** the size of the structure varies.
+*/
 typedef struct LineInfo LineInfo;
 struct LineInfo {
     unsigned        RefCount;             /* Reference counter */
@@ -84,13 +84,13 @@ LineInfo* UseLineInfo (LineInfo* LI);
 
 void ReleaseLineInfo (LineInfo* LI);
 /* Release a reference to the given line info, free the structure if the
- * reference count drops to zero.
- */
+** reference count drops to zero.
+*/
 
 LineInfo* GetCurLineInfo (void);
 /* Return a pointer to the current line info. The reference count is NOT
- * increased, use UseLineInfo for that purpose.
- */
+** increased, use UseLineInfo for that purpose.
+*/
 
 void UpdateLineInfo (struct IFile* F, unsigned LineNum, const StrBuf* Line);
 /* Update the line info - called if a new line is read */