libxputty 0.1
Loading...
Searching...
No Matches
xasprintf.h
Go to the documentation of this file.
1
2#ifndef _GNU_SOURCE
3
10#pragma once
11
12#ifndef XASPRINTF_H_
13#define XASPRINTF_H_
14
15#ifdef __cplusplus
16extern "C" {
17#endif
18
19
20int _vscprintf_so(const char * format, va_list pargs);
21
22int vasprintf(char **strp, const char *fmt, va_list ap);
23
24int asprintf(char *strp[], const char *fmt, ...);
25
26#ifdef __cplusplus
27}
28#endif
29
30#endif //XASPRINTF_H_
31
32#endif // !_GNU_SOURCE
int vasprintf(char **strp, const char *fmt, va_list ap)
Definition xasprintf.c:25
int asprintf(char *strp[], const char *fmt,...)
Definition xasprintf.c:36
int _vscprintf_so(const char *format, va_list pargs)
Definition xasprintf.c:16