mirror of
https://github.com/moparisthebest/curl
synced 2024-10-31 23:55:01 -04:00
12 lines
153 B
C
12 lines
153 B
C
/* $Id$ */
|
|
|
|
#include "ares_version.h"
|
|
|
|
const char *ares_version(int *version)
|
|
{
|
|
if(version)
|
|
*version = ARES_VERSION;
|
|
|
|
return ARES_VERSION_STR;
|
|
}
|