mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
30 lines
473 B
C
30 lines
473 B
C
|
#ifndef CASPRINTF_H_INCLUDED
|
||
|
#define CASPRINTF_H_INCLUDED
|
||
|
|
||
|
#include <stdarg.h>
|
||
|
|
||
|
#include "c_util.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
extern const char * const strsol;
|
||
|
|
||
|
void
|
||
|
cvasprintf(const char ** const retvalP,
|
||
|
const char * const fmt,
|
||
|
va_list varargs);
|
||
|
|
||
|
void GNU_PRINTF_ATTR(2,3)
|
||
|
casprintf(const char ** const retvalP, const char * const fmt, ...);
|
||
|
|
||
|
void
|
||
|
strfree(const char * const string);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|