Переглянути джерело

WARN and FATAL macros

master
Bert 14 роки тому
джерело
коміт
bbe7ae0470
1 змінених файлів з 18 додано та 0 видалено
  1. +18
    -0
      sxiv.h

+ 18
- 0
sxiv.h Переглянути файл

@@ -23,4 +23,22 @@

#define VERSION "git-20110117"

#define WARN(...) \
do { \
fprintf(stderr, "sxiv: %s:%d: warning: ", __FILE__, __LINE__); \
fprintf(stderr, __VA_ARGS__); \
fprintf(stderr, "\n"); \
} while (0)

#define FATAL(...) \
do { \
fprintf(stderr, "sxiv: %s:%d: error: ", __FILE__, __LINE__); \
fprintf(stderr, __VA_ARGS__); \
fprintf(stderr, "\n"); \
cleanup(); \
exit(1); \
} while (0)

void cleanup();

#endif /* SXIV_H */

Завантаження…
Відмінити
Зберегти