Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ares_version.c « c-ares « deps - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4f8c42f2c9a34d5d11562de85b2256638c31cfda (plain)
1
2
3
4
5
6
7
8
9
10
11

#include "ares_setup.h"
#include "ares.h"

const char *ares_version(int *version)
{
  if(version)
    *version = ARES_VERSION;

  return ARES_VERSION_STR;
}