comb.h 410 Bytes
/***************************************************************
 *
 *	comb.h
 *	 the comb function header
 *
 *	12/22/94		bfs initial version
 *
 */
 
#ifndef __COMB_H__
#define __COMB_H__

/* exported data types */
struct comb_info {
	long length;
	float coef;
	float* base;
	float* out_ptr;
	float in_data;
	float out_data;
};

/******* exported prototypes *********/
float comb(struct comb_info*);

#endif