summaryrefslogtreecommitdiff
path: root/country.h
blob: 465c305851bf721e7ea442459cbbfaef2722257e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef NAVIT_COUNTRY_H
#define NAVIT_COUNTRY_H

#ifdef __cplusplus
extern "C" {
#endif

/* prototypes */
struct attr;
struct country_search;
struct item;
struct country_search *country_search_new(struct attr *search, int partial);
struct item *country_search_get_item(struct country_search *this);
struct attr *country_default(void);
void country_search_destroy(struct country_search *this);
/* end of prototypes */

#ifdef __cplusplus
}
#endif

#endif