Add missing options to show configuration

This commit is contained in:
Martin Lund 2024-04-20 14:51:45 +02:00
parent 51bfa68bdd
commit b05f38abd0
6 changed files with 64 additions and 11 deletions

View file

@ -21,12 +21,13 @@
#pragma once
enum script_run_t
typedef enum
{
SCRIPT_RUN_ONCE,
SCRIPT_RUN_ALWAYS,
SCRIPT_RUN_NEVER,
SCRIPT_RUN_END,
};
} script_run_t;
void script_run(int fd);
const char *script_run_state_to_string(script_run_t state);