MusicKit  0.0.0
fir3.h
00001 /* Copyright 1993-1996 by J.O. Smith (jos@ccrma.stanford.edu).  All rights reserved. */
00002 
00003 typedef struct _fir3Vars {
00004     pp outputAout;
00005     pp inputAinp;
00006     word b0;
00007     word b1;
00008     word b2;
00009     word s1;
00010     word s2;
00011 } fir3Vars;
00012 
00013 extern void fir3(fir3Vars *a);
00014 
00015 
00016 
00017