File: utf_user.c

package info (click to toggle)
systemtap 4.4-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 38,260 kB
  • sloc: cpp: 77,147; ansic: 61,828; xml: 49,277; exp: 42,244; sh: 11,046; python: 2,772; perl: 2,252; tcl: 1,305; makefile: 1,086; lisp: 105; java: 102; awk: 101; asm: 91; sed: 16
file content (30 lines) | stat: -rw-r--r-- 1,100 bytes parent folder | download | duplicates (7)
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
#include <stdint.h>

static uint16_t utf16_string[] = {
    0x73, 0x74, 0x61, 0x70, // "stap" (one-byte UTF-8 each)
    0x7F, 0x80,             // last one-byte, first two-byte
    0x391, 0x3A9,           // "ΑΩ" (two-byte UTF-8 each)
    0x7FF, 0x800,           // last two-byte, first three-byte
    0x263A,                 // "☺" (three-byte UTF-8)
    0xFFFF, 0xD800, 0xDC00, // last three-byte, first four-byte
    0xD83D, 0xDE08,         // U+1F608 "😈" (four-byte UTF-8)
    0xDBFF, 0xDFFF,         // last supported four-byte
    0
};

static uint32_t utf32_string[] = {
    0x73, 0x74, 0x61, 0x70, // "stap" (one-byte UTF-8 each)
    0x7F, 0x80,             // last one-byte, first two-byte
    0x391, 0x3A9,           // "ΑΩ" (two-byte UTF-8 each)
    0x7FF, 0x800,           // last two-byte, first three-byte
    0x263A,                 // "☺" (three-byte UTF-8)
    0xFFFF, 0x10000,        // last three-byte, first four-byte
    0x1F608,                // "😈" (four-byte UTF-8)
    0x10FFFF,               // last supported four-byte
    0
};

int main()
{
    return 0;
}