mirror of
https://github.com/xdsopl/robot36.git
synced 2025-12-06 07:12:07 +01:00
15 lines
191 B
C
15 lines
191 B
C
|
|
|
||
|
|
#ifndef DELAY_H
|
||
|
|
#define DELAY_H
|
||
|
|
typedef struct {
|
||
|
|
float *s;
|
||
|
|
int last;
|
||
|
|
int len;
|
||
|
|
} delay_t;
|
||
|
|
|
||
|
|
float do_delay(delay_t *, float);
|
||
|
|
delay_t *alloc_delay(int);
|
||
|
|
void free_delay(delay_t *);
|
||
|
|
#endif
|
||
|
|
|