aboutsummaryrefslogtreecommitdiff
path: root/client/acronc/helpers.h
blob: 95b3ad22903a7bd2a4efedf651573aac0f195ca8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * Created by yuuta on 7/24/22.
 */

#ifndef ACRONC_HELPERS_H
#define ACRONC_HELPERS_H

#include <libac.h>

#ifdef _WIN32
#include <winsock2.h>
#include <ws2tcpip.h>

#else

#include <sys/socket.h>

#endif

const char *ntop(const struct sockaddr *sa);

const char *world_name(enum ac_world world);

#endif /* ACRONC_HELPERS_H */