mirror of
https://gitlab.com/80486DX2-66/gists
synced 2024-11-14 20:35:54 +05:30
11 lines
177 B
C
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 */
|