1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2025-05-31 08:31:41 +05:30

C: categorize files, update .gitignore

This commit is contained in:
2024-02-20 19:36:12 +03:00
parent 73257b0c55
commit eb34ee33b3
12 changed files with 36 additions and 36 deletions

View File

@@ -0,0 +1,17 @@
/*
* 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 */