comparison src/base64/base64enc.c @ 0:08114f7dcc23 0.2.21

this is masqmail-0.2.21 from oliver kurth
author meillo@marmaro.de
date Fri, 26 Sep 2008 17:05:23 +0200
parents
children 26e34ae9a3e3
comparison
equal deleted inserted replaced
-1:000000000000 0:08114f7dcc23
1
2 #include <glib.h>
3 #include <stdio.h>
4 #include <stdlib.h>
5
6 #include "base64.h"
7
8 int main()
9 {
10 gchar in[58];
11 gint size;
12
13 do{
14 gchar *out;
15
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 }
24