git ssb

0+

cel / foostudio



Tree: bb4c57ab9509dfe407fa6359c04c79270e64bd18

Files: bb4c57ab9509dfe407fa6359c04c79270e64bd18 / foobuf.h

228 bytesRaw
1#pragma once
2
3struct foobuf {
4 size_t len;
5 size_t offset;
6 float *data;
7};
8
9int foobuf_init(struct foobuf **, size_t len);
10float foobuf_read(struct foobuf *buf, size_t offset);
11void foobuf_write(struct foobuf *buf, float val);
12

Built with git-ssb-web