| 59 | } |
| 60 | |
| 61 | static uint8_t* IntegerToByteArray(uint32_t nData) |
| 62 | { |
| 63 | uint8_t out[4] = { (nData >> 0) & 0xFF, (nData >> 8) & 0xFF, (nData >> 16) & 0xFF, (nData >> 24) & 0xFF }; |
| 64 | return out; |
| 65 | } |
| 66 |
nothing calls this directly
no outgoing calls
no test coverage detected