1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-26 02:05:08 +00:00

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
parent f3676ebef5
commit e09b83c60c
10 changed files with 148 additions and 21 deletions

View file

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