(i int32)
| 156 | } |
| 157 | |
| 158 | func LeEncodeInt32(i int32) []byte { |
| 159 | b := make([]byte, 4) |
| 160 | binary.LittleEndian.PutUint32(b, uint32(i)) |
| 161 | return b |
| 162 | } |
| 163 | |
| 164 | func LeEncodeUint32(i uint32) []byte { |
| 165 | b := make([]byte, 4) |
no outgoing calls
no test coverage detected
searching dependent graphs…