github.com/safing/portbase@v0.19.5/formats/dsd/tests.gencode (about)

     1  struct SimpleTestStruct {
     2  	S string
     3  	B byte
     4  }
     5  
     6  struct GenCodeTestStructure {
     7  	I8   int8
     8  	I16  int16
     9  	I32  int32
    10  	I64  int64
    11  	UI8  uint8
    12  	UI16 uint16
    13  	UI32 uint32
    14  	UI64 uint64
    15  	S    string
    16  	Sp   *string
    17  	Sa   []string
    18  	Sap  *[]string
    19  	B    byte
    20  	Bp   *byte
    21  	Ba   []byte
    22  	Bap  *[]byte
    23  }