delay.h
413 Bytes
/***************************************************************
*
* delay.h
* the delay header
*
* 12/22/94 bfs initial version
*
*/
#pragma once
#ifndef __DELAY_H
#define __DELAY_H
/* exported data types */
struct dl_info {
long length;
float coef;
float* base;
float* out_ptr;
float in_data;
float out_data;
};
/******* exported prototypes *********/
float delay(struct dl_info*);
#endif