lmtlanguagelib.h /size: 374 b    last modification: 2024-01-16 10:22
1/*
2    See license.txt in the root of this project.
3*/
4
5# ifndef LLANGUAGELIB_H
6# define LLANGUAGELIB_H
7
8extern void lmt_initialize_languages (void);
9
10extern int  lmt_handle_word (
11    tex_language *lang,
12    const char   *original,
13    const char   *word,
14    int           length,
15    halfword      first,
16    halfword      last,
17    char        **replacement
18);
19
20# endif
21