mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 10:37:45 +00:00
LibTextCodec: Add alternate Cyrillic (aka Koi8-r) encoding
Fixes #6840.
This commit is contained in:
parent
2c1a6ce9a5
commit
6f5102f435
2 changed files with 41 additions and 0 deletions
|
@ -52,6 +52,11 @@ public:
|
|||
virtual void process(StringView, Function<void(u32)> on_code_point) override;
|
||||
};
|
||||
|
||||
class Koi8RDecoder final : public Decoder {
|
||||
public:
|
||||
virtual void process(StringView, Function<void(u32)> on_code_point) override;
|
||||
};
|
||||
|
||||
class Latin9Decoder final : public Decoder {
|
||||
public:
|
||||
virtual void process(StringView, Function<void(u32)> on_code_point) override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue