ftp.nice.ch/pub/next/unix/audio/cmix.s.tar.gz#/cmix/Minc/graf.main.c

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


#include "defs.h"
/* points to tree to be executed once yacc gets done */
Tree program;

main()
{

	init();
	yyparse();
	exct(program);

}
	
init (){};
parse_dispatch(str,args,n)
char *str;
int n;
double args[];

{
	int i1;
	printf ("%s:  ",str);
	for (i1=0;i1<n;i1++) {
		printf ("%g  ",args[i1]);
	
	}
	printf(" <n_args=%d>\n\n",n);
	return -999;
}

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