Category : Recently Uploaded Files
Archive   : SNIP9503.ZIP
Filename : UUDECODE.C

 
Output of file : UUDECODE.C contained in archive : SNIP9503.ZIP
/*
** by: John Lots
** patched up for BC++ 3.1 by Alan Eldridge 10/12/92
** (UUCP: [email protected], FIDO: 1:272/38.473)
*/

#include
#include
#define DEC(c) (char)(((c)-' ')&077)

int main()
{
int n;
char buf[128],a,b,c,d;

scanf("begin %o ", &n);
gets(buf); /* filename */
if (!freopen(buf, "wb", stdout)) /* oops.. */
{
perror(buf);
exit(1);
}
while ((n=getchar())!=EOF&&((n=DEC(n))!=0))
{
while (n>0)
{
a=DEC(getchar());
b=DEC(getchar());
c=DEC(getchar());
d=DEC(getchar());
if (n-->0)
putchar((a<<2)|(b>>4));
if (n-->0)
putchar((b<<4)|(c>>2));
if (n-->0)
putchar((c<<6)|d);
}
n=getchar(); /* skip \n */
}
return 0;
}


  3 Responses to “Category : Recently Uploaded Files
Archive   : SNIP9503.ZIP
Filename : UUDECODE.C

  1. Very nice! Thank you for this wonderful archive. I wonder why I found it only now. Long live the BBS file archives!

  2. This is so awesome! 😀 I’d be cool if you could download an entire archive of this at once, though.

  3. But one thing that puzzles me is the “mtswslnkmcjklsdlsbdmMICROSOFT” string. There is an article about it here. It is definitely worth a read: http://www.os2museum.com/wp/mtswslnk/