summaryrefslogtreecommitdiffstats
path: root/diag.h
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2020-10-04 13:46:35 -0400
committerTavian Barnes <tavianator@tavianator.com>2020-10-05 15:39:22 -0400
commit98a3dd364739136329fe2b8f9cdeecf776fb17c9 (patch)
treed571ed17227849679b397e0cfd6c95a51c41c524 /diag.h
parentb3312002a5d96cd486156a711d3c1861c150b7c6 (diff)
downloadbfs-98a3dd364739136329fe2b8f9cdeecf776fb17c9.tar.xz
diag: New bfs_perror() function
Diffstat (limited to 'diag.h')
-rw-r--r--diag.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/diag.h b/diag.h
index 8faef07..aa5e1c7 100644
--- a/diag.h
+++ b/diag.h
@@ -27,6 +27,11 @@
#include <stdbool.h>
/**
+ * Like perror(), but decorated like bfs_error().
+ */
+void bfs_perror(const struct bfs_ctx *ctx, const char *str);
+
+/**
* Shorthand for printing error messages.
*/
BFS_FORMATTER(2, 3)