Enable all warnings

Signed-off-by: Slendi <slendi@socopon.com>
This commit is contained in:
2025-07-24 21:30:58 +03:00
parent 123763f48c
commit 6c7fd9c8d6
2 changed files with 12 additions and 1 deletions

View File

@@ -961,9 +961,13 @@ dcfg_Value *dcfg_parse(dcfg_Instance *instance,
}
// FIXME: Get Value * from AST
return NULL;
}
void dcfg_destroy(dcfg_Value *value) {}
void dcfg_destroy(dcfg_Value *value) {
(void)value;
// FIXME: Implement
}
// Libraries
#include "vendor/utf8proc.c"