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

18 lines
280 B
C
Raw Normal View History

2024-01-25 23:03:58 +05:30
/*
* asprintf.h
*
* Author: Intel A80486DX2-66
* License: Creative Commons Zero 1.0 Universal
*/
2024-01-15 22:12:17 +05:30
#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 */