File: string.yaml

package info (click to toggle)
dtfabric 20251118-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 868 kB
  • sloc: python: 5,787; sh: 25; makefile: 19
file content (39 lines) | stat: -rw-r--r-- 707 bytes parent folder | download | duplicates (3)
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
34
35
36
37
38
39
# dtFabric format specification.
---
name: char
type: character
attributes:
  byte_order: little-endian
  size: 1
  units: bytes
---
name: wchar16
aliases: [WCHAR]
type: character
description: 16-bit wide character type
attributes:
  byte_order: little-endian
  size: 2
  units: bytes
---
name: utf8_string
type: string
description: UTF-8 string
encoding: utf8
element_data_type: char
elements_terminator: "\x00"
---
name: utf8_string_fixed_size
type: string
description: UTF-8 string
encoding: utf8
element_data_type: char
elements_data_size: 16
elements_terminator: "\x00"
---
name: utf16_string
type: string
description: UTF-16 string
encoding: utf-16-le
element_data_type: wchar16
number_of_elements: 8