mirror of
https://github.com/curl/curl.git
synced 2024-11-27 05:50:21 +08:00
13 lines
169 B
C
13 lines
169 B
C
/* $Id$ */
|
|
|
|
#include "ares_setup.h"
|
|
#include "ares.h"
|
|
|
|
const char *ares_version(int *version)
|
|
{
|
|
if(version)
|
|
*version = ARES_VERSION;
|
|
|
|
return ARES_VERSION_STR;
|
|
}
|