swayfx/include/log.h

17 lines
535 B
C
Raw Normal View History

#ifndef _SWAY_LOG_H
#define _SWAY_LOG_H
#include <stdbool.h>
2018-01-05 22:32:51 +01:00
#include <wlr/util/log.h>
2017-04-20 19:13:53 +03:00
void _sway_abort(const char *filename, ...) ATTRIB_PRINTF(1, 2);
2017-04-20 19:13:53 +03:00
#define sway_abort(FMT, ...) \
2018-02-24 12:49:42 -05:00
_sway_abort("[%s:%d] " FMT, wlr_strip_path(__FILE__), __LINE__, ##__VA_ARGS__)
2015-08-26 11:01:26 -07:00
bool _sway_assert(bool condition, const char* format, ...) ATTRIB_PRINTF(2, 3);
2015-08-26 11:01:26 -07:00
#define sway_assert(COND, FMT, ...) \
2018-02-24 12:49:42 -05:00
_sway_assert(COND, "[%s:%d] %s:" FMT, wlr_strip_path(__FILE__), __LINE__, __PRETTY_FUNCTION__, ##__VA_ARGS__)
2015-08-26 11:01:26 -07:00
2015-08-24 15:44:58 -05:00
void error_handler(int sig);
#endif