mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-02 15:46:33 +00:00
LibTextCodec: Add alternate Cyrillic (aka Koi8-r) encoding
Fixes #6840.
This commit is contained in:
parent
2c1a6ce9a5
commit
6f5102f435
Notes:
sideshowbarker
2024-07-17 22:42:20 +09:00
Author: https://github.com/can3p 🔰
Commit: 6f5102f435
Pull-request: https://github.com/SerenityOS/serenity/pull/11250
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