apcomb.h
434 Bytes
/***************************************************************
*
* apcomb.h
* the all-pass inside a comb function header
*
* 12/22/94 bfs initial version
*
*/
#ifndef __APCOMB_H__
#define __APCOMB_H__
/* exported data types */
struct apc_info {
long length;
float coef;
float* base;
float* out_ptr;
float in_data;
float out_data;
};
/******* exported prototypes *********/
float apcomb(struct apc_info*);
#endif