You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
578 B
17 lines
578 B
#ifndef _SWAY_LOG_H
|
|
#define _SWAY_LOG_H
|
|
#include <stdbool.h>
|
|
#include <wlr/util/log.h>
|
|
|
|
void _sway_abort(const char *filename, int line, const char* format, ...) __attribute__((format(printf,3,4)));
|
|
#define sway_abort(FMT, ...) \
|
|
_sway_abort(__FILE__, __LINE__, FMT, ##__VA_ARGS__)
|
|
|
|
bool _sway_assert(bool condition, const char *filename, int line, const char* format, ...) __attribute__((format(printf,4,5)));
|
|
#define sway_assert(COND, FMT, ...) \
|
|
_sway_assert(COND, __FILE__, __LINE__, "%s:" FMT, __PRETTY_FUNCTION__, ##__VA_ARGS__)
|
|
|
|
void error_handler(int sig);
|
|
|
|
#endif
|