comparison tools/lib64util.h @ 2586:9807ae37ad69

Require stdbool.h, we require C11 now.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 08 Dec 2022 15:59:22 +0200
parents bb44c48cffac
children
comparison
equal deleted inserted replaced
2585:ef6c826c5b7a 2586:9807ae37ad69
25 25
26 26
27 // 27 //
28 // Functions 28 // Functions
29 // 29 //
30 char * dmC64GetImageTypeString(char *buf, const size_t len, const int type, const BOOL lng); 30 char * dmC64GetImageTypeString(char *buf, const size_t len, const int type, const bool lng);
31 void dmC64ImageDump(FILE *fh, const DMC64Image *img, const DMC64ImageFormat *fmt, const char *indent); 31 void dmC64ImageDump(FILE *fh, const DMC64Image *img, const DMC64ImageFormat *fmt, const char *indent);
32 32
33 void argShowC64PaletteHelp(FILE *fh); 33 void argShowC64PaletteHelp(FILE *fh);
34 void argShowC64Formats(FILE *fh, const BOOL rw, const BOOL verbose); 34 void argShowC64Formats(FILE *fh, const bool rw, const bool verbose);
35 BOOL argHandleC64PaletteOption(char *optArg, DMC64Palette **ppal, char **palFile); 35 bool argHandleC64PaletteOption(char *optArg, DMC64Palette **ppal, char **palFile);
36 36
37 int dmHandleExternalPalette(const char *filename, DMPalette **ppal); 37 int dmHandleExternalPalette(const char *filename, DMPalette **ppal);
38 38
39 const char *dmGetChargenROMPath(); 39 const char *dmGetChargenROMPath();
40 40