blob: 27a7f26a9567a530fad3244478cebf94027d2bc8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
int
msgs_init(const char *const MSGS[]);
int
msgs_end(void);
const char *
msgs_string(const char *const MSGS[], const int msg_id);
int
msgs_print_ids(
const char *const MSGS[],
FILE *restrict stream,
const int msg_begin,
const int msg_end
);
int
msgs_print_id(
const char *const MSGS[],
FILE *restrict stream,
const int msg_id
);
int
msgs_dump_translatable_strings(const char *const MSGS[]);
|