/usr/include/csound/pools.h is in libcsound64-dev 1:6.05~dfsg1-7build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #ifndef POOLS_H
#define POOLS_H
#define POOL_SIZE 256
typedef struct myflt_pool {
CS_VAR_MEM* values;
int max;
int count;
} MYFLT_POOL;
MYFLT_POOL* myflt_pool_create(CSOUND* csound);
int myflt_pool_indexof(MYFLT_POOL* pool, MYFLT value);
int myflt_pool_find_or_add(CSOUND* csound, MYFLT_POOL* pool, MYFLT value);
int myflt_pool_find_or_addc(CSOUND* csound, MYFLT_POOL* pool, char* s);
void myflt_pool_free(CSOUND *csound, MYFLT_POOL *pool);
#endif
|