This commit is contained in:
Willy-JL
2024-03-20 01:48:10 +00:00
588 changed files with 3875 additions and 2957 deletions

View File

@@ -211,7 +211,7 @@ static bool bad_kb_input_callback(InputEvent* event, void* context) {
return consumed;
}
BadKb* bad_kb_alloc() {
BadKb* bad_kb_alloc(void) {
BadKb* bad_kb = malloc(sizeof(BadKb));
bad_kb->view = view_alloc();

View File

@@ -6,7 +6,7 @@
typedef struct BadKb BadKb;
typedef void (*BadKbButtonCallback)(InputKey key, void* context);
BadKb* bad_kb_alloc();
BadKb* bad_kb_alloc(void);
void bad_kb_free(BadKb* bad_kb);