Files: 6cd4730c51cbbdc9bcc196a95d8dd12dba65eef3 / tune.h
291 bytesRaw
1 | |
2 | |
3 | typedef float play_fn(void *, double time, float in); |
4 | |
5 | |
6 | |
7 | static inline int _struct_init(void **ptr, size_t size) |
8 | { |
9 | if (*ptr) return 0; |
10 | if ((*ptr = calloc(size, 1))) return 0; |
11 | return 1; |
12 | } |
13 | |
14 | extern play_fn play; |
15 |
Built with git-ssb-web