Files: f87af6a0bf824e4980c8e1b25a7a1307183bbe3e / 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