mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-04 05:05:13 +00:00
b1238af49d
this will probably upset people
27 lines
286 B
C
27 lines
286 B
C
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
int i,a,len;
|
|
char buf[BUFSIZ];
|
|
char out[BUFSIZ];
|
|
|
|
len=read(0,buf,BUFSIZ)-2;
|
|
len/=2;
|
|
|
|
i=1;
|
|
while(buf[i]!='\"') {
|
|
a=buf[i]<<3;
|
|
a^=buf[i+len];
|
|
out[i-1]=a;
|
|
i++;
|
|
}
|
|
|
|
write(1,out,len);
|
|
|
|
return 0;
|
|
}
|
|
|
|
|