File:  [Research Unix] / researchv10no / games / trek / getcodi.c
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Tue Apr 24 17:21:35 2018 UTC (8 years, 1 month ago) by root
Branches: belllabs, MAIN
CVS tags: researchv10, HEAD
researchv10 Norman

/**
 **	get course and distance
 **/

getcodi(co, di)
int	*co;
float	*di;
{
	if(getintpar("Course", co)==0) return(0);
	fixco(co);
	readsep(",");
	if(getfltpar("Distance", di)==0) return(0);
	if(*di<0.0) {
		*di = -*di;
		*co =- 180;
		fixco(co);
	}
	return(1);
}

fixco(co)
int	*co;
{
	register int	neg;

	neg = *co<0;
	*co =% 360;
	if(neg)	*co =+ 360;
}

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.