summaryrefslogtreecommitdiffstats
path: root/src/shared/parse-argument.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/parse-argument.h')
-rw-r--r--src/shared/parse-argument.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/shared/parse-argument.h b/src/shared/parse-argument.h
new file mode 100644
index 0000000..adad65e
--- /dev/null
+++ b/src/shared/parse-argument.h
@@ -0,0 +1,9 @@
+/* SPDX-License-Identifier: LGPL-2.1-or-later */
+#pragma once
+
+#include "json.h"
+
+int parse_boolean_argument(const char *optname, const char *s, bool *ret);
+int parse_json_argument(const char *s, JsonFormatFlags *ret);
+int parse_path_argument(const char *path, bool suppress_root, char **arg);
+int parse_signal_argument(const char *s, int *ret);