mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 02:57:44 +00:00
LibTextCodec: Add Turkish (aka ISO-8859-9, Windows-1254) encoding
This commit is contained in:
parent
21ee0ad6fc
commit
3b2a528b33
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