-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_database.c
24 lines (18 loc) · 999 Bytes
/
test_database.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
typedef struct Test_Entry {
const char* id;
const char* city;
const char* name;
const char* where;
} Test_Entry;
#define TEST_DATABASE_SIZE 9
Test_Entry test_database [TEST_DATABASE_SIZE] = {
{"IZA", "SANTA YNEZ, CA", "SANTA YNEZ AIRPORT", "-"},
{"SBA", "SANTA BARBARA, CA", "SANTA BARBARA MUNICIPAL AIRPORT", "15.9 nm SE"},
{"LPC", "LOMPOC, CA", "LOMPOC AIRPORT", "19.7 nm W"},
{"SMX", "SANTA MARIA, CA", "SANTA MARIA PUB/CAPT G ALLAN HANCOCK FIELD AIRPORT", "25.8 nm NW"},
{"L88", "NEW CUYAMA, CA", "NEW CUYAMA AIRPORT", "27.7 nm NE"},
{"L52", "OCEANO, CA", "OCEANO COUNTY AIRPORT", "40.1 nm NW"},
{"L17", "TAFT, CA", "TAFT-KERN COUNTY AIRPORT", "44.9 nm NE"},
{"SBP", "SAN LUIS OBISPO, CA", "SAN LUIS COUNTY REGIONAL AIRPORT", "47.0 nm NW"},
{"OXR", "OXNARD, CA", "OXNARD AIRPORT", "49.4 nm ESE"}
};