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:
17
c-programming/strings/asprintf.h
Normal file
17
c-programming/strings/asprintf.h
Normal 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 */
|
Reference in New Issue
Block a user