masqmail-0.2

view src/base64/base64enc.c @ 90:d3e39ba684a3

added some words about exim to docs/uucp-setup exim's rmail handling is similar to the one masqmail had now masqmail's rmail approach is similar to postfix's but it still can be called as `rmail' and behaves like exim in that case then
author meillo@marmaro.de
date Sat, 19 Jun 2010 19:18:46 +0200
parents 08114f7dcc23
children
line source
1 #include <glib.h>
2 #include <stdio.h>
3 #include <stdlib.h>
5 #include "base64.h"
7 int
8 main()
9 {
10 gchar in[58];
11 gint size;
13 do {
14 gchar *out;
16 size = fread(in, 1, 54, stdin);
17 out = base64_encode(in, size);
18 fputs(out, stdout);
19 putchar('\n');
20 g_free(out);
21 } while (size == 54);
22 exit(0);
23 }