(data []byte, b byte)
| 12 | } |
| 13 | |
| 14 | func AppendUbyte(data []byte, b byte) []byte { |
| 15 | return append(data, b) |
| 16 | } |
| 17 | |
| 18 | func AppendShort(data []byte, s int16) []byte { |
| 19 | return append(data, byte(s>>8), byte(s)) |
nothing calls this directly
no outgoing calls
no test coverage detected