[fix] renaming structure

This commit is contained in:
Al
2015-06-23 02:11:58 -05:00
parent 7dd772de0f
commit f2d03a7937
3 changed files with 5 additions and 5 deletions

View File

@@ -9,12 +9,12 @@ typedef struct script_code {
char *code;
} script_code_t;
typedef struct script_language {
typedef struct script_languages {
size_t num_languages;
char *languages[MAX_LANGS];
} script_language_t;
} script_languages_t;
script_t get_char_script(uint32_t ch);
script_language_t get_script_languages(script_t script);
script_languages_t get_script_languages(script_t script);
#endif