mirror of
https://github.com/moparisthebest/curl
synced 2024-11-05 17:15:04 -05:00
084447e414
CARES_HAVE_ARES_LIBRARY_INIT and CARES_HAVE_ARES_LIBRARY_CLEANUP to ease the use of new capabilities. - Move ares_version() prototype to ares.h
13 lines
164 B
C
13 lines
164 B
C
/* $Id$ */
|
|
|
|
#include "setup.h"
|
|
#include "ares.h"
|
|
|
|
const char *ares_version(int *version)
|
|
{
|
|
if(version)
|
|
*version = ARES_VERSION;
|
|
|
|
return ARES_VERSION_STR;
|
|
}
|