summaryrefslogtreecommitdiffstats
path: root/src/basic/runtime-scope.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/basic/runtime-scope.c')
-rw-r--r--src/basic/runtime-scope.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/basic/runtime-scope.c b/src/basic/runtime-scope.c
new file mode 100644
index 0000000..3d653d6
--- /dev/null
+++ b/src/basic/runtime-scope.c
@@ -0,0 +1,20 @@
+/* SPDX-License-Identifier: LGPL-2.1-or-later */
+
+#include "runtime-scope.h"
+#include "string-table.h"
+
+static const char* const runtime_scope_table[_RUNTIME_SCOPE_MAX] = {
+ [RUNTIME_SCOPE_SYSTEM] = "system",
+ [RUNTIME_SCOPE_USER] = "user",
+ [RUNTIME_SCOPE_GLOBAL] = "global",
+};
+
+DEFINE_STRING_TABLE_LOOKUP(runtime_scope, RuntimeScope);
+
+static const char* const runtime_scope_cmdline_option_table[_RUNTIME_SCOPE_MAX] = {
+ [RUNTIME_SCOPE_SYSTEM] = "--system",
+ [RUNTIME_SCOPE_USER] = "--user",
+ [RUNTIME_SCOPE_GLOBAL] = "--global",
+};
+
+DEFINE_STRING_TABLE_LOOKUP_TO_STRING(runtime_scope_cmdline_option, RuntimeScope);