mnemonicode-0.73/mnencode.c
author Jens Alfke <jens@mooseyard.com>
Wed Sep 02 08:41:25 2009 -0700 (2009-09-02)
changeset 35 5cab3034d3a1
permissions -rw-r--r--
10.6 compatibility: Fix some new compiler warnings, and work around apparent regressions in NSTask and -stringByStandardizingPath.
     1 #include <stdio.h>
     2 #include "mnemonic.h"
     3 
     4 main ()
     5 {
     6   mn_byte buf[0x10000];
     7   char outbuf[0x90000];
     8   int buflen;
     9   int n;
    10 
    11   fprintf (stderr, "%s\n", mn_wordlist_version);
    12 
    13   buflen = fread (buf, 1, sizeof (buf), stdin);
    14   n = mn_encode (buf, buflen, outbuf, sizeof outbuf, MN_F64BITSPERLINE);
    15   if (n == 0)
    16     fwrite (outbuf, 1, strlen (outbuf), stdout);
    17   else
    18     fprintf (stderr, "mn_encode error %d\n", n);
    19   putchar ('\n');
    20 
    21   return 0;
    22 }