diff sidlib.h @ 393:db64a58314a9

Renaming BOOL->bool and TRUE/FALSE to true/false, and using stdbool.h if available.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 07 Dec 2022 12:19:12 +0200
parents c96448875797
children 95a8e05dae27
line wrap: on
line diff
--- a/sidlib.h	Thu Jul 14 01:56:07 2022 +0300
+++ b/sidlib.h	Wed Dec 07 12:19:12 2022 +0200
@@ -146,12 +146,12 @@
     uint8_t  sid2Addr, sid3Addr;
 
     // Extra data
-    BOOL isRSID, isInvalidRSID;
+    bool isRSID, isInvalidRSID;
     size_t dataSize;     // Total size of data - header
     th_md5hash_t hash;   // Songlength database hash
 
     // Internal use only
-    BOOL allocated; // TRUE if structure has been allocated
+    bool allocated; // true if structure has been allocated
     SIDLibSLDBNode *lengths; // Songlength information node pointer
     SIDLibSTILNode *stil;  // STIL database node pointer
 } SIDLibPSIDHeader;