Commit : Code Added

This commit is contained in:
Rafat Hussain
2014-12-15 15:47:46 +05:30
parent 4e59955be8
commit b344fc7ac1
18 changed files with 7626 additions and 0 deletions

22
src/wavefilt.h Normal file
View File

@@ -0,0 +1,22 @@
#ifndef WAVEFILT_H_
#define WAVEFILT_H_
#include <stdio.h>
#include "conv.h"
#ifdef __cplusplus
extern "C" {
#endif
int filtlength(char* name);
int filtcoef(char* name, double *lp1, double *hp1, double *lp2, double *hp2);
#ifdef __cplusplus
}
#endif
#endif /* WAVEFILT_H_ */