diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-05-18 12:16:30 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-05-18 16:30:25 -0400 |
commit | ded8567215afa498295660d123159f26210e066a (patch) | |
tree | e73f5602063ffc2a69658392c9497b61d73d6dd3 /src/diag.h | |
parent | 873e6bf836b2dd2d7dedc905c0386b7cd66c0d85 (diff) | |
download | bfs-ded8567215afa498295660d123159f26210e066a.tar.xz |
diag: New bfs_abort() and bfs_bug() macros
Diffstat (limited to 'src/diag.h')
-rw-r--r-- | src/diag.h | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -22,6 +22,30 @@ # define BFS_STATIC_ASSERT(expr, msg, ...) _Static_assert(expr, msg) #endif +/** + * Print a message to standard error and abort. + */ +BFS_FORMATTER(1, 2) +noreturn void bfs_abortf(const char *format, ...); + +/** + * Unconditional abort with a message. + */ +#define bfs_abort(...) \ + BFS_ABORT(__VA_ARGS__, "\n") + +#define BFS_ABORT(format, ...) \ + bfs_abortf((format) ? "%s: %s:%d:%s(): " format "%s" : "", BFS_COMMAND, __FILE__, __LINE__, __func__, __VA_ARGS__) + +/** + * Abort in debug builds; no-op in release builds. + */ +#ifdef NDEBUG +# define bfs_bug(...) ((void)0) +#else +# define bfs_bug bfs_abort +#endif + struct bfs_expr; /** |