17 lines
197 B
C
Raw Normal View History

2009-08-21 21:41:00 -04:00
#include <stdio.h>
#include "version.h"
int main(int argc, char **argv) {
2016-12-08 23:04:56 -05:00
int input;
while(1) {
input=fgetc(stdin);
if (input==EOF) break;
printf("$%02X,",input|0x80);
}
return 0;
2009-08-21 21:41:00 -04:00
}