mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-16 23:20:43 +00:00
37 lines
571 B
C
37 lines
571 B
C
#include <stdio.h>
|
|
#include <stdlib.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;
|
|
int add=' ';
|
|
|
|
if (argc>1) {
|
|
add=atoi(argv[1]);
|
|
}
|
|
|
|
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+add;
|
|
output[out_ptr+1]=x1+add;
|
|
output[out_ptr+2]=x2+add;
|
|
output[out_ptr+3]=y1+add;
|
|
output[out_ptr+4]=y2+add;
|
|
out_ptr+=5;
|
|
}
|
|
output[out_ptr]=0;
|
|
printf("%s\n",output);
|
|
|
|
return 0;
|
|
}
|