1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2025-01-10 17:32:05 +05:30

18 lines
254 B
C
Raw Normal View History

2024-01-25 20:33:58 +03:00
/*
* asprintf.h
*
* Author: Intel A80486DX2-66
2024-04-25 23:16:39 +03:00
* License: Unlicense
2024-01-25 20:33:58 +03:00
*/
2024-01-15 19:42:17 +03:00
#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 */