chiark / gitweb /
path-util: in path_is_mount_point() fall back to the classic stat() test if fs does...
[elogind.git] / src / shared / logs-show.h
index 2e9cf63891ba887501467c9e9dd0358a4c4eaeb5..58ff9e5760bd8b39101f07fc2f2ca2cf8cd1db39 100644 (file)
@@ -1,7 +1,6 @@
 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
 
-#ifndef foologsshowhfoo
-#define foologsshowhfoo
+#pragma once
 
 /***
   This file is part of systemd.
@@ -40,11 +39,12 @@ typedef enum OutputMode {
 } OutputMode;
 
 typedef enum OutputFlags {
-        OUTPUT_SHOW_ALL = 1 << 0,
+        OUTPUT_SHOW_ALL       = 1 << 0,
         OUTPUT_MONOTONIC_MODE = 1 << 1,
-        OUTPUT_FOLLOW = 1 << 2,
-        OUTPUT_WARN_CUTOFF = 1 << 3,
-        OUTPUT_FULL_WIDTH = 1 << 4,
+        OUTPUT_FOLLOW         = 1 << 2,
+        OUTPUT_WARN_CUTOFF    = 1 << 3,
+        OUTPUT_FULL_WIDTH     = 1 << 4,
+        OUTPUT_COLOR          = 1 << 5
 } OutputFlags;
 
 int output_journal(sd_journal *j, OutputMode mode, unsigned line,
@@ -60,5 +60,3 @@ int show_journal_by_unit(
 
 const char* output_mode_to_string(OutputMode m);
 OutputMode output_mode_from_string(const char *s);
-
-#endif