forked from ElektraInitiative/libelektra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data_utf8.c
33 lines (31 loc) · 911 Bytes
/
data_utf8.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 Österreichisches Lüder säße auf dös Schrütt. Äber Über EUR sägen.",
KEY_COMMENT, "String key with standard name",
KEY_END),
keyNew ("user/tests/iconv/MoreUmlautsKey",
KEY_VALUE, "Wörtersee im !\"§$%&/()=?´`^° @|<> µ#' .",
KEY_COMMENT, "String key with standard name",
KEY_END),
keyNew ("user/tests/iconv/CommentUmlautsKey",
KEY_VALUE, "EasyValue",
KEY_COMMENT, "ÄÖÜßäöü",
KEY_END),
KS_END);