| /* | |
| $Id: encoding.h 1442 2017-04-02 22:43:30Z soci $ | |
| This program is free software; you can redistribute it and/or modify | |
| it under the terms of the GNU General Public License as published by | |
| the Free Software Foundation; either version 2 of the License, or | |
| (at your option) any later version. | |
| This program is distributed in the hope that it will be useful, | |
| but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| GNU General Public License for more details. | |
| You should have received a copy of the GNU General Public License along | |
| with this program; if not, write to the Free Software Foundation, Inc., | |
| 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
| */ | |
| struct encoding_s; | |
| struct Obj; | |
| struct trans_s { | |
| uint32_t start; | |
| uint32_t end : 24; | |
| uint32_t offset : 8; | |
| struct avltree_node node; | |
| }; | |
| extern struct encoding_s *actual_encoding; | |
| struct str_t; | |
| struct Str; | |
| extern struct encoding_s *new_encoding(const struct str_t *, linepos_t); | |
| extern struct trans_s *new_trans(struct trans_s *, struct encoding_s *); | |
| extern bool new_escape(const struct str_t *, struct Obj *, struct encoding_s *, linepos_t); | |
| extern void encode_string_init(const struct Str *, linepos_t); | |
| extern int encode_string(void); | |
| extern void encode_error(Error_types); | |
| extern void init_encoding(bool); | |
| extern void destroy_encoding(void); | |