diff options
Diffstat (limited to 'src/diagnostic.h')
| -rw-r--r-- | src/diagnostic.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/diagnostic.h b/src/diagnostic.h new file mode 100644 index 0000000..c958589 --- /dev/null +++ b/src/diagnostic.h @@ -0,0 +1,9 @@ +// SPDX-License-Identifier: MPL-2.0 +// Copyright (c) 2018 Yuxuan Shui <[email protected]> + +#pragma once +#include <stdbool.h> + +typedef struct session session_t; + +void print_diagnostics(session_t *, const char *config_file, bool compositor_running); |