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

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

float table(nsample,array,tab)

long nsample;
float *array,*tab;

{
	register loc = ((float)(nsample)/(*tab)) * *(tab+1);
	if(loc >= *(tab+1)) loc = *(tab+1);
	return(*(array + loc));
}

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