summaryrefslogtreecommitdiff
path: root/apps/language.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/language.c')
-rw-r--r--apps/language.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/apps/language.c b/apps/language.c
index 06e7846e8d..a714ef7d90 100644
--- a/apps/language.c
+++ b/apps/language.c
@@ -29,6 +29,16 @@ extern int printf(const char *format, ...);
29#include "debug.h" 29#include "debug.h"
30#include "string.h" 30#include "string.h"
31 31
32/* The following header is generated by the build system and only defines
33 MAX_LANGUAGE_SIZE to be the size of the largest currently available
34 language! */
35#include "max_language_size.h"
36
37/* both these must match the two initial bytes in the binary lang file */
38#define LANGUAGE_COOKIE 0x1a
39#define LANGUAGE_VERSION 0x04
40
41
32static unsigned char language_buffer[MAX_LANGUAGE_SIZE]; 42static unsigned char language_buffer[MAX_LANGUAGE_SIZE];
33 43
34void lang_init(void) 44void lang_init(void)