]> git.sur5r.net Git - cc65/blobdiff - src/ca65/objfile.h
Make much more usage of dynamic strings (StrBufs) instead of char* and
[cc65] / src / ca65 / objfile.h
index 203d989933316804b9834545ec99018f5027be0a..3abcd7cf6ffe05291bc4b021d64f5075c88788e9 100644 (file)
@@ -40,6 +40,7 @@
 
 /* common */
 #include "filepos.h"
+#include "strbuf.h"
 
 
 
@@ -79,6 +80,9 @@ void ObjWriteVar (unsigned long V);
 void ObjWriteStr (const char* S);
 /* Write a string to the object file */
 
+void ObjWriteBuf (const StrBuf* S);
+/* Write a string to the object file */
+
 void ObjWriteData (const void* Data, unsigned Size);
 /* Write literal data to the file */