Files: bb4c57ab9509dfe407fa6359c04c79270e64bd18 / foobuf.h
228 bytesRaw
1 | |
2 | |
3 | struct foobuf { |
4 | size_t len; |
5 | size_t offset; |
6 | float *data; |
7 | }; |
8 | |
9 | int foobuf_init(struct foobuf **, size_t len); |
10 | float foobuf_read(struct foobuf *buf, size_t offset); |
11 | void foobuf_write(struct foobuf *buf, float val); |
12 |
Built with git-ssb-web