forked from ElektraInitiative/libelektra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data_latin1.c
33 lines (31 loc) · 1019 Bytes
/
data_latin1.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/**
* @file
*
* @brief
*
* @copyright BSD License (see LICENSE.md or https://www.libelektra.org)
*/
// clang-format off
ksNew( 19 ,
keyNew ("user/tests/iconv/PerfectBinaryKey",
KEY_VALUE, "BinaryValue",
KEY_COMMENT, "Binary key with standard name",
KEY_BINARY,
KEY_END),
keyNew ("user/tests/iconv/PerfectStringKey",
KEY_VALUE, "StringValue",
KEY_COMMENT, "String key with standard name",
KEY_END),
keyNew ("user/tests/iconv/UmlautsKey",
KEY_VALUE, "Ein ""\xD6""sterreichisches L""\xFC""der s""\xE4""\xDF""e auf d""\xF6""s Schr""\xFC""tt. ""\xC4""ber ""\xDC""ber EUR s""\xE4""gen.",
KEY_COMMENT, "String key with standard name",
KEY_END),
keyNew ("user/tests/iconv/MoreUmlautsKey",
KEY_VALUE, "W""\xF6""rtersee im !\"""\xA7""$%&/()=?""\xB4""`^""\xB0"" @|<> ""\xB5""#' .",
KEY_COMMENT, "String key with standard name",
KEY_END),
keyNew ("user/tests/iconv/CommentUmlautsKey",
KEY_VALUE, "EasyValue",
KEY_COMMENT, "\xC4""\xD6""\xDC""\xDF""\xE4""\xF6""\xFC",
KEY_END),
KS_END);