ftp.nice.ch/pub/next/unix/audio/cmix.s.tar.gz#/cmix/lib/delput.c

This is delput.c in view mode; [Download] [Up]

delput(x,a,l)
float *a,x;
int *l;
{

/* put value in delay line. See delset. x is float */

	*(a + (*l)++) = x;
	if(*(l) >= *(l+1)) *l -= *(l+1);
}

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.