File: countrycodes.h

package info (click to toggle)
gavl 2.0.0~svn6298-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 14,808 kB
  • sloc: ansic: 465,657; makefile: 325; sh: 109
file content (11 lines) | stat: -rw-r--r-- 232 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
typedef struct
  {
  const char * label;
  const char * code_alpha_2; // ISO 3166-1 alpha-2
  const char * code_alpha_3; // ISO 3166-1 alpha-3
  int code_numeric;
  } gavl_country_t;

extern const gavl_country_t gavl_countries[];