LibTextCodec: Start fleshing out a simple text codec library

We're starting with a very basic decoding API and only ISO-8859-1 and
UTF-8 decoding (and UTF-8 decoding is really a no-op since String is
expected to be UTF-8.)
This commit is contained in:
Andreas Kling 2020-05-03 22:41:34 +02:00
commit e09b83c60c
Notes: sideshowbarker 2024-07-19 07:00:24 +09:00
10 changed files with 148 additions and 21 deletions

View file

@ -4,6 +4,6 @@ OBJS = \
PROGRAM = TextEditor
LIB_DEPS = Web Markdown GUI Gfx VT Protocol IPC Thread Pthread Core JS
LIB_DEPS = Web TextCodec Markdown GUI Gfx VT Protocol IPC Thread Pthread Core JS
include ../../Makefile.common