]> git.lizzy.rs Git - asprintf.git/blob - asprintf.h
Add CMake config
[asprintf.git] / asprintf.h
1 #ifndef _ASPINTF_H_
2 #define _ASPINTF_H_
3
4 #include <stdarg.h>
5
6 int vasprintf(char **str, const char *fmt, va_list ap);
7 int asprintf(char **str, const char *fmt, ...);
8
9 #endif // _ASPINTF_H_