mirror of
https://github.com/moparisthebest/curl
synced 2024-11-08 02:25:06 -05:00
a9d74e6c97
what particular ares version that is being used.
12 lines
147 B
C
12 lines
147 B
C
/* $Id$ */
|
|
|
|
#include "ares_version.h"
|
|
|
|
char *ares_version(int *version)
|
|
{
|
|
if(version)
|
|
*version = ARES_VERSION;
|
|
|
|
return ARES_VERSION_STR;
|
|
}
|