| 55 | |
| 56 | |
| 57 | void MSG_ReadByteAlign( msg_t *buf ) { |
| 58 | // round up to the next byte |
| 59 | if ( buf->bit ) { |
| 60 | buf->bit = 0; |
| 61 | buf->readcount++; |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | void *MSG_GetSpace( msg_t *buf, int length ) { |
| 66 | void *data; |
no outgoing calls
no test coverage detected