mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-08 17:02:23 +00:00
22 lines
361 B
C
22 lines
361 B
C
#ifndef STRING_NUMBER_H_INCLUDED
|
|
#define STRING_NUMBER_H_INCLUDED
|
|
|
|
#include <xmlrpc-c/config.h>
|
|
#include <xmlrpc-c/util.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
XMLRPC_DLLEXPORT
|
|
void
|
|
xmlrpc_parse_int64(xmlrpc_env * const envP,
|
|
const char * const str,
|
|
xmlrpc_int64 * const i64P);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|