1 2 3 4 5 6 7 8 9 10 11 12 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