8 lines
118 B
C
8 lines
118 B
C
#pragma once
|
|
|
|
typedef struct
|
|
{
|
|
char *name;
|
|
|
|
void (*save)(const char *key, const char *value);
|
|
} persistence_t; |