mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-20 03:35:24 +00:00
b1238af49d
this will probably upset people
31 lines
492 B
C
31 lines
492 B
C
#include <stdio.h>
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
char buffer[1024];
|
|
char *ptr;
|
|
int color,x1,x2,y1,y2;
|
|
char output[1024];
|
|
int out_ptr=0;
|
|
|
|
while(1) {
|
|
|
|
ptr=fgets(buffer,1024,stdin);
|
|
if (ptr==NULL) break;
|
|
|
|
sscanf(buffer,"%d %d %d %d %d",
|
|
&color,&x1,&x2,&y1,&y2);
|
|
|
|
output[out_ptr]=color+32;
|
|
output[out_ptr+1]=x1+32;
|
|
output[out_ptr+2]=x2+32;
|
|
output[out_ptr+3]=y1+32;
|
|
output[out_ptr+4]=y2+32;
|
|
out_ptr+=5;
|
|
}
|
|
output[out_ptr]=0;
|
|
printf("%s\n",output);
|
|
|
|
return 0;
|
|
}
|