summaryrefslogtreecommitdiff
path: root/ted.h
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-10-18 23:47:17 -0400
committerpommicket <pommicket@gmail.com>2023-10-18 23:47:17 -0400
commit0dc4d4db3a91faa799187fd321fcae82b12f9b66 (patch)
tree01450afdc49764bd8ea486d155a351fd7b6a8d4b /ted.h
parent4d57539ffc2954e5c3b9c42da41511f69c4fcde9 (diff)
editorconfig globs, testing "framework"
Diffstat (limited to 'ted.h')
-rw-r--r--ted.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/ted.h b/ted.h
index f21bf3c..6331d5c 100644
--- a/ted.h
+++ b/ted.h
@@ -1138,6 +1138,8 @@ void ted_warn(Ted *ted, PRINTF_FORMAT_STRING const char *fmt, ...) ATTRIBUTE_PRI
void ted_info(Ted *ted, PRINTF_FORMAT_STRING const char *fmt, ...) ATTRIBUTE_PRINTF(2, 3);
/// for information that should be logged
void ted_log(Ted *ted, PRINTF_FORMAT_STRING const char *fmt, ...) ATTRIBUTE_PRINTF(2, 3);
+/// for information that should be logged
+void ted_vlog(Ted *ted, const char *fmt, va_list args);
/// set error to "out of memory" message.
void ted_out_of_mem(Ted *ted);
/// allocate memory, producing an error message and returning `NULL` on failure