implement left/right with callback

Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
2025-06-15 00:49:30 +02:00
parent 52a49363eb
commit 2191174681
29 changed files with 1783 additions and 641 deletions

View File

@@ -0,0 +1,8 @@
#pragma once
typedef struct
{
char *name;
void (*save)(const char *key, const char *value);
} persistence_t;