mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-05 18:44:54 +00:00
00654d880e
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8545 d0543943-73ff-0310-b7d9-9358b9ac24b2
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
|