diff options
Diffstat (limited to 'src/lullaby.h')
| -rw-r--r-- | src/lullaby.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/lullaby.h b/src/lullaby.h new file mode 100644 index 0000000..9474a08 --- /dev/null +++ b/src/lullaby.h @@ -0,0 +1,13 @@ +#ifndef LULLABY_H +#define LULLABY_H +#pragma once +#include "config.h" + +extern int _print_errors; + +static struct config lullaby_config[] = { + {.name = "print_errors", .type = c_int, .value = {.c_int = &_print_errors}}, + {.type = c_none} +}; + +#endif |
