|
ChibiOS 21.11.4
|
Memory streams code. More...
Go to the source code of this file.
Functions | |
| static size_t | _writes (void *ip, const uint8_t *bp, size_t n) |
| static size_t | _reads (void *ip, uint8_t *bp, size_t n) |
| static msg_t | _put (void *ip, uint8_t b) |
| static msg_t | _get (void *ip) |
| static msg_t | _unget (void *ip, uint8_t b) |
| void | msObjectInit (MemoryStream *msp, uint8_t *buffer, size_t size, size_t eos) |
| Memory stream object initialization. | |
Variables | |
| static const struct MemStreamVMT | vmt = {(size_t)0, _writes, _reads, _put, _get, _unget} |
Memory streams code.
Definition in file memstreams.c.