libacfutils
A general purpose library of utility functions designed to make it easier to develop addons for the X-Plane flight simulator.
Loading...
Searching...
No Matches
icao2cc.h
Go to the documentation of this file.
1/*
2 * CDDL HEADER START
3 *
4 * This file and its contents are supplied under the terms of the
5 * Common Development and Distribution License ("CDDL"), version 1.0.
6 * You may only use this file in accordance with the terms of version
7 * 1.0 of the CDDL.
8 *
9 * A full copy of the text of the CDDL should have accompanied this
10 * source. A copy of the CDDL is also available via the Internet at
11 * http://www.illumos.org/license/CDDL.
12 *
13 * CDDL HEADER END
14*/
15/*
16 * Copyright 2023 Saso Kiselkov. All rights reserved.
17 */
25#ifndef _ICAO2CC_H_
26#define _ICAO2CC_H_
27
28#include "core.h"
29
30#ifdef __cplusplus
31extern "C" {
32#endif
33
34API_EXPORT const char *icao2cc(const char *icao);
35API_EXPORT const char *icao2lang(const char *icao);
36
37#ifdef __cplusplus
38}
39#endif
40
41#endif /* _ICAO2CC_H_ */
const char * icao2lang(const char *icao)
Definition icao2cc.c:463
const char * icao2cc(const char *icao)
Definition icao2cc.c:434