23 lines
		
	
	
		
			341 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			341 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
/*
 | 
						|
 * getw - read a word from a stream
 | 
						|
 */
 | 
						|
/* $Header$ */
 | 
						|
 | 
						|
#include	<stdio.h>
 | 
						|
 | 
						|
_PROTOTYPE(int getw, (FILE *stream ));
 | 
						|
 | 
						|
int getw(stream)
 | 
						|
register FILE *stream;
 | 
						|
{
 | 
						|
	register int cnt = sizeof(int);
 | 
						|
	int w;
 | 
						|
	register char *p = (char *) &w;
 | 
						|
 | 
						|
	while (cnt--) {
 | 
						|
		*p++ = getc(stream);
 | 
						|
	}
 | 
						|
	if (feof(stream) || ferror(stream)) return EOF;
 | 
						|
	return w;
 | 
						|
}
 |