summaryrefslogtreecommitdiff
path: root/include/stream.h
blob: 6bdc29e261a1187e65bbe93271756f7fb2f0ccb6 (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdint.h>
#include <stddef.h>

typedef struct p_stream_s p_stream_t;

struct p_stream_s {
    int (*read)(uint8_t *buf, size_t len, void **vptr, void *sptr);
    int (*write)(uint8_t *buf, size_t len, void **vptr, void *sptr);
    void **props;
};