1 /* -*- c-basic-offset:2; tab-width:2; indent-tabs-mode:nil -*- */
2 
3 #ifndef __EF_RU_MAP_H__
4 #define __EF_RU_MAP_H__
5 
6 #include "ef_char.h"
7 
8 int ef_map_ucs4_to_ru(ef_char_t *ru, ef_char_t *ucs4);
9 
10 int ef_map_koi8_r_to_iso8859_5_r(ef_char_t *iso8859, ef_char_t *ru);
11 
12 int ef_map_koi8_r_to_koi8_u(ef_char_t *koi8_u, ef_char_t *koi8_r);
13 
14 int ef_map_koi8_u_to_koi8_r(ef_char_t *koi8_r, ef_char_t *koi8_u);
15 
16 #endif
17