aboutsummaryrefslogtreecommitdiff
path: root/include/log.h
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2015-08-19 07:14:03 -0400
committerDrew DeVault <sir@cmpwn.com>2015-08-19 07:14:03 -0400
commit8fb2e7e34e279a005a4d42e224f71f9b35ddf918 (patch)
treea04cc657974f755360c5102a88c908a5160f61cd /include/log.h
parentae367c5af496828cf326f55597db26fcbfefe6d0 (diff)
parentc5a69828934bf07db9062bd5f24bb2ff94b45b4a (diff)
Merge pull request #79 from taiyu-len/master
fixed floating_modifier related things
Diffstat (limited to 'include/log.h')
-rw-r--r--include/log.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/log.h b/include/log.h
index 44f84940..7aea2ded 100644
--- a/include/log.h
+++ b/include/log.h
@@ -1,6 +1,7 @@
#ifndef _SWAY_LOG_H
#define _SWAY_LOG_H
#include <stdbool.h>
+#include "container.h"
typedef enum {
L_SILENT = 0,
@@ -15,4 +16,5 @@ void sway_log(int verbosity, const char* format, ...) __attribute__((format(prin
void sway_abort(const char* format, ...) __attribute__((format(printf,1,2)));
bool sway_assert(bool condition, const char* format, ...) __attribute__((format(printf,2,3)));
+void layout_log(const swayc_t *c, int depth);
#endif