class TP_ZSTRING_QUOTED_C_LANG_STRING
TP_ZSTRING_QUOTED_STRING implemented for C language
note
description: "[
${TP_ZSTRING_QUOTED_STRING} implemented for C language
]"
author: "Finnian Reilly"
copyright: "Copyright (c) 2001-2022 Finnian Reilly"
contact: "finnian at eiffel hyphen loop dot com"
license: "MIT license (See: en.wikipedia.org/wiki/MIT_License)"
date: "2024-01-20 19:18:26 GMT (Saturday 20th January 2024)"
revision: "4"
class
TP_ZSTRING_QUOTED_C_LANG_STRING
inherit
TP_ZSTRING_QUOTED_STRING
redefine
unescaped_code
end
TP_OPTIMIZED_FOR_ZSTRING
TP_C_LANGUAGE_FACTORY
rename
escaped_character_sequence as new_escape_sequence
end
create
make
feature {NONE} -- Implementation
unescaped_code (text: ZSTRING; start_index, end_index, sequence_count: INTEGER): NATURAL
do
if sequence_count = 2 then
Result := Codec.as_z_code (Code_table [text.item_8 (end_index)].to_character_32)
end
end
end