Advertisement
B1KMusic

file-enc.c -- golf edition (148 bytes)

Oct 15th, 2015
412
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.36 KB | None | 0 0
  1. // Version 1: 158 bytes
  2. int*i,*o;char*k;int c,l;main(int _,char**v){i=fopen(v[1],"r");o=fopen(v[2],"w")
  3. ;k=v[3];l=strlen(k);while((c=fgetc(i))!=-1)fputc(c^*k,o),k=k==v[3]+l?v[3]:k+1;}
  4.  
  5. // Version 2: 148 bytes
  6. main(c,v,k,i,o,l)char**v,*k;int*i,*o;{i=fopen(v[1],"r"),o=fopen(v[2],"w"),
  7. l=strlen(k=v[3]);while((c=fgetc(i))^-1)fputc(c^*k,o),k=l+v[3]-k?k+1:v[3];}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement