mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-14 13:32:23 +00:00
LibTextCodec: Add Turkish (aka ISO-8859-9, Windows-1254) encoding
This commit is contained in:
parent
21ee0ad6fc
commit
3b2a528b33
Notes:
sideshowbarker
2024-07-18 11:37:28 +09:00
Author: https://github.com/aatosmajava
Commit: 3b2a528b33
Pull-request: https://github.com/SerenityOS/serenity/pull/8218
Reviewed-by: https://github.com/IdanHo ✅
2 changed files with 44 additions and 0 deletions
|
@ -53,6 +53,11 @@ public:
|
|||
virtual String to_utf8(const StringView&) override;
|
||||
};
|
||||
|
||||
class TurkishDecoder 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