]> git.sur5r.net Git - cc65/blobdiff - src/sp65/palette.h
Removed unneeded include files.
[cc65] / src / sp65 / palette.h
index 05a10adf999d1ba89c35b024587739b8d29cfb70..d7180e0f03379bb7c0a4f5e5cd36db8ec27f9d6d 100644 (file)
@@ -38,6 +38,8 @@
 
 
 
+#include <stdio.h>
+
 /* sp65 */
 #include "color.h"
 
@@ -69,9 +71,15 @@ Palette* NewPalette (unsigned Entries);
 Palette* NewMonochromePalette (void);
 /* Create and return a palette with two entries (black and white) */
 
+Palette* DupPalette (const Palette* P);
+/* Create a copy of a palette */
+
 void FreePalette (Palette* P);
 /* Free a dynamically allocated palette */
 
+void DumpPalette (FILE* F, const Palette* P);
+/* Dump the palette in readable form to the given file */
+
 
 
 /* End of palette.h */