]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/shared/output-mode.c
Merge pull request #2471 from michaelolbrich/transient-mounts
[thirdparty/systemd.git] / src / shared / output-mode.c
1 /***
2 This file is part of systemd.
3
4 Copyright 2012 Lennart Poettering
5
6 systemd is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
10
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18 ***/
19
20 #include "output-mode.h"
21 #include "string-table.h"
22
23 static const char *const output_mode_table[_OUTPUT_MODE_MAX] = {
24 [OUTPUT_SHORT] = "short",
25 [OUTPUT_SHORT_FULL] = "short-full",
26 [OUTPUT_SHORT_ISO] = "short-iso",
27 [OUTPUT_SHORT_PRECISE] = "short-precise",
28 [OUTPUT_SHORT_MONOTONIC] = "short-monotonic",
29 [OUTPUT_SHORT_UNIX] = "short-unix",
30 [OUTPUT_VERBOSE] = "verbose",
31 [OUTPUT_EXPORT] = "export",
32 [OUTPUT_JSON] = "json",
33 [OUTPUT_JSON_PRETTY] = "json-pretty",
34 [OUTPUT_JSON_SSE] = "json-sse",
35 [OUTPUT_CAT] = "cat"
36 };
37
38 DEFINE_STRING_TABLE_LOOKUP(output_mode, OutputMode);