File: stream.yaml

package info (click to toggle)
dtfabric 20240211-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 868 kB
  • sloc: python: 5,785; sh: 24; makefile: 19
file content (29 lines) | stat: -rw-r--r-- 657 bytes parent folder | download | duplicates (2)
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
# dtFabric format specification.
---
name: wchar16
aliases: [WCHAR]
type: character
description: 16-bit wide character type
attributes:
  byte_order: little-endian
  size: 2
  units: bytes
---
name: utf16le_stream
aliases: [UTF16LE]
type: stream
description: UTF-16 little-endian stream
element_data_type: wchar16
number_of_elements: 8
---
name: utf16le_stream_with_size
type: stream
description: UTF-16 little-endian stream with size
element_data_type: wchar16
elements_data_size: size
---
name: utf16le_stream_with_terminator
type: stream
description: UTF-16 little-endian stream with terminator
element_data_type: wchar16
elements_terminator: "\x00\x00"