| 1351 | } |
| 1352 | |
| 1353 | unsigned int roundUp(unsigned int length, unsigned int alignment) |
| 1354 | { |
| 1355 | const unsigned int offset = length % alignment; |
| 1356 | return length + (offset ? alignment - offset : 0); |
| 1357 | } |
| 1358 | |
| 1359 | const int SEQLEN_SZ = 4; |
| 1360 |
no outgoing calls
no test coverage detected