blob: 2c7cdcdf3106b9c6fc8b054e9f78dd1f85a6dc66 (
plain)
1
2
3
4
5
6
7
8
|
#ifndef OSTREAM_MULTIPLEX
#define OSTREAM_MULTIPLEX 1
struct ostream *o_stream_create_multiplex(struct ostream *parent, size_t bufsize);
struct ostream *o_stream_multiplex_add_channel(struct ostream *stream, uint8_t cid);
uint8_t o_stream_multiplex_get_channel_id(struct ostream *stream);
#endif
|