about summary refs log tree commit diff
path: root/pls.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-09-02 01:03:12 -0400
committerJune McEnroe <june@causal.agency>2018-09-02 01:03:12 -0400
commite5663d45df15395cc4650937ed2bde8e29257d27 (patch)
tree840d676b9ba3bae5f0674cc4fd290e9cdf4b9808 /pls.c
parentMark views when they are created (diff)
downloadcatgirl-e5663d45df15395cc4650937ed2bde8e29257d27.tar.gz
catgirl-e5663d45df15395cc4650937ed2bde8e29257d27.zip
Add aswprintf
The format string won't get checked but I'm not sure I can reasonably
use the same hack.
Diffstat (limited to 'pls.c')
-rw-r--r--pls.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/pls.c b/pls.c
index 08309f8..9f6cb69 100644
--- a/pls.c
+++ b/pls.c
@@ -120,3 +120,11 @@ fail:
 	*ret = NULL;
 	return -1;
 }
+
+int aswprintf(wchar_t **ret, const wchar_t *format, ...) {
+	va_list ap;
+	va_start(ap, format);
+	int n = vaswprintf(ret, format, ap);
+	va_end(ap);
+	return n;
+}