summaryrefslogtreecommitdiff
path: root/country.h
blob: 8e435f3a12df524f365404ac0ba90cdd6aa831e5 (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