cmake: Debug build sets DEBUG, properly find check lib

This commit is contained in:
Nils O. Selåsdal
2026-04-06 23:25:56 +02:00
parent 85713d25c1
commit b2f834b7cd
3 changed files with 8 additions and 7 deletions
+3 -3
View File
@@ -25,9 +25,9 @@ extern "C" {
*/
typedef struct UCSArena UCSArena;
struct UCSArena {
char *start; // start of user buffer
char *curr; // next alloc point
char *end; // one past end of user buffer
unsigned char *start; // start of user buffer
unsigned char *curr; // next alloc point
unsigned char *end; // one past end of user buffer
};
/** Initialize a UCSArena with predefined backing array.