libisdn
|
00001 /* 00002 * ISO 3166-1 Numeric-, Two-Letter Codes and Names 00003 * Taken from: http://en.wikipedia.org/wiki/ISO_3166-1 00004 */ 00005 #ifndef _ISO3166_H_ 00006 #define _ISO3166_H_ 00007 00008 int iso3166_by_id(unsigned short id, const char **code, const char **name); 00009 int iso3166_by_code(const char *code, unsigned short *id, const char **name); 00010 00011 #endif