00001 /* Copyright 1993-1996 by J.O. Smith (jos@ccrma.stanford.edu). All rights reserved. */ 00002 typedef struct _exponentialVars { 00003 pp output; 00004 word targetVal; 00005 word rate; 00006 dbl curVal; 00007 } exponentialVars; 00008 00009 extern void exponential(exponentialVars *a); 00010 00011 00012 00013