mirror of
				https://github.com/deater/dos33fsprogs.git
				synced 2025-10-31 09:16:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			197 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			197 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include <stdio.h>
 | |
| 
 | |
| #include "version.h"
 | |
| 
 | |
| int main(int argc, char **argv) {
 | |
| 
 | |
| 	int input;
 | |
| 
 | |
| 	while(1) {
 | |
| 		input=fgetc(stdin);
 | |
| 		if (input==EOF) break;
 | |
| 		printf("$%02X,",input|0x80);
 | |
| 	}
 | |
| 
 | |
| 	return 0;
 | |
| }
 |