diff options
author | Maria Matejka <mq@ucw.cz> | 2022-05-30 15:15:19 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2022-05-30 15:15:19 +0200 |
commit | 921344c3ba5a0e30f04511d2039dff79b6f82dd9 (patch) | |
tree | 64c496aa9c26c38cd0f5219c79e3d2863997d2c8 /lib/string.h | |
parent | b4336b0880dee2a039ca55321f4344444512f97d (diff) | |
parent | 3a6eda995ecfcebff3130d86ee3baeab12a41335 (diff) |
Merge commit '3a6eda995ecfcebff3130d86ee3baeab12a41335' into haugesund
Diffstat (limited to 'lib/string.h')
-rw-r--r-- | lib/string.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/string.h b/lib/string.h index 976b1c24..2829943d 100644 --- a/lib/string.h +++ b/lib/string.h @@ -20,6 +20,11 @@ int bvsprintf(char *str, const char *fmt, va_list args); int bsnprintf(char *str, int size, const char *fmt, ...); int bvsnprintf(char *str, int size, const char *fmt, va_list args); +char *mb_sprintf(pool *p, const char *fmt, ...); +char *mb_vsprintf(pool *p, const char *fmt, va_list args); +char *lp_sprintf(linpool *p, const char *fmt, ...); +char *lp_vsprintf(linpool *p, const char *fmt, va_list args); + int buffer_vprint(buffer *buf, const char *fmt, va_list args); int buffer_print(buffer *buf, const char *fmt, ...); void buffer_puts(buffer *buf, const char *str); |