1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
typedef struct location_channel
{
char location[16];
int channel[16];
}
location_channel_t;
location_channel_t loc_ch[] = {
{"Europe", {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13}},
{"Israel", {5, 6, 7}},
{"Jordania", {10, 11, 12, 13}},
{"America", {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11}},
{"Argentina", {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11}},
{"Bresil", {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11}},
{"Canada", {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11}},
{"Colombia", {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11}},
{"Mexic", {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11}},
{"Taiwan", {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11}},
{"", {0}},
}; |