mirror of
https://gitlab.com/80486DX2-66/gists
synced 2024-11-15 05:45:55 +05:30
18 lines
280 B
C
18 lines
280 B
C
/*
|
|
* asprintf.h
|
|
*
|
|
* Author: Intel A80486DX2-66
|
|
* License: Creative Commons Zero 1.0 Universal
|
|
*/
|
|
|
|
#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 */
|