mirror of
https://github.com/Raymo111/i3lock-color.git
synced 2024-11-11 13:50:52 -05:00
68b78a7f57
From here on, we’ll use clang-format to automatically format the source. This has worked well in i3, so we are introducing it for i3lock.
14 lines
558 B
C
14 lines
558 B
C
#ifndef _I3LOCK_H
|
|
#define _I3LOCK_H
|
|
|
|
/* This macro will only print debug output when started with --debug.
|
|
* This is important because xautolock (for example) closes stdout/stderr by
|
|
* default, so just printing something to stdout will lead to the data ending
|
|
* up on the X11 socket (!). */
|
|
#define DEBUG(fmt, ...) \
|
|
do { \
|
|
if (debug_mode) \
|
|
printf("[i3lock-debug] " fmt, ##__VA_ARGS__); \
|
|
} while (0)
|
|
|
|
#endif
|