10 lines
		
	
	
	
		
			134 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			134 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include <stdio.h>
 | |
| 
 | |
| puts(s)
 | |
| register char *s;
 | |
| {
 | |
| 	register FILE *file = stdout;
 | |
| 	while ( *s ) 
 | |
| 		putc(*s++,file);
 | |
| 	putc('\n', file);
 | |
| }
 |