File: array-ft-obj-gen-c-types-example.adoc

package info (click to toggle)
barectf 3.1.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,840 kB
  • sloc: python: 3,781; ansic: 1,585; makefile: 45; sh: 11
file content (31 lines) | stat: -rw-r--r-- 689 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
.Generated C{nbsp}types for various element field types.
====
[%autowidth.stretch]
|===
|Element field type |Generated C{nbsp}type

|8-bit unsigned xref:int-ft-obj.adoc[integer]
|`const uint8_t *`

|32-bit signed integer
|`const int32_t *`

|Single-precision xref:real-ft-obj.adoc[real]
|`const float *`

|xref:str-ft-obj.adoc[String]
|`const char * const *`

|xref:static-array-ft-obj.adoc[Static array] of 16-bit signed integers
|`const int16_t * const *`

|Static array of double-precision reals
|`const double * const *`

|Static array of strings
|`const char * const * const *`

|Static array of static arrays of 32-bit unsigned integers
|`const uint32_t * const * const *`
|===
====