mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-18 08:20:44 +00:00
LibTextCodec: Add ISO-8859-15 (aka Latin-9) encoding
This commit is contained in:
parent
155f1026ce
commit
7597cca5c6
Notes:
sideshowbarker
2024-07-18 12:13:34 +09:00
Author: https://github.com/aatosmajava 🔰
Commit: 7597cca5c6
Pull-request: https://github.com/SerenityOS/serenity/pull/8063
Reviewed-by: https://github.com/IdanHo ✅
2 changed files with 48 additions and 0 deletions
|
@ -48,6 +48,11 @@ public:
|
|||
virtual String to_utf8(const StringView&) override;
|
||||
};
|
||||
|
||||
class Latin9Decoder final : public Decoder {
|
||||
public:
|
||||
virtual String to_utf8(const StringView&) override;
|
||||
};
|
||||
|
||||
Decoder* decoder_for(const String& encoding);
|
||||
Optional<String> get_standardized_encoding(const String& encoding);
|
||||
bool is_standardized_encoding(const String& encoding);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue