mirror of
				https://github.com/swaywm/sway.git
				synced 2025-10-29 05:40:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			529 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			529 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef _SWAY_LOG_H
 | |
| #define _SWAY_LOG_H
 | |
| #include <stdbool.h>
 | |
| #include <wlr/util/log.h>
 | |
| 
 | |
| void _sway_abort(const char *filename, ...) ATTRIB_PRINTF(1, 2);
 | |
| #define sway_abort(FMT, ...) \
 | |
|     _sway_abort("[%s:%d] " FMT, _strip_path(__FILE__), __LINE__, ##__VA_ARGS__)
 | |
| 
 | |
| bool _sway_assert(bool condition, const char* format, ...) ATTRIB_PRINTF(2, 3);
 | |
| #define sway_assert(COND, FMT, ...) \
 | |
| 	_sway_assert(COND, "[%s:%d] %s:" FMT, _strip_path(__FILE__), __LINE__, __PRETTY_FUNCTION__, ##__VA_ARGS__)
 | |
| 
 | |
| void error_handler(int sig);
 | |
| 
 | |
| #endif
 | 
