diff --git a/src/constants.h b/src/constants.h index ce636b15..7e9bf5d4 100644 --- a/src/constants.h +++ b/src/constants.h @@ -10,7 +10,10 @@ #define LANGUAGE_SEPARATOR_CHAR "|" #define LANGUAGE_SEPARATOR_CHAR_LEN strlen(LANGUAGE_SEPARATOR_CHAR) +// Supports ISO 3166 alpha 2 and alpha 3 codes +#define MAX_COUNTRY_CODE_LEN 4 + // Supports ISO 639 alpha 2 and alpha 3 codes #define MAX_LANGUAGE_LEN 4 -#endif \ No newline at end of file +#endif