1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2024-11-15 05:45:55 +05:30
gists/c-programming/asprintf.h

11 lines
177 B
C

#ifndef _ASPRINTF_H
#define _ASPRINTF_H
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
ssize_t asprintf(char** strp, char* format, ...);
#endif /* _ASPRINTF_H */