masqmail-0.2

view src/base64/base64dec.c @ 0:08114f7dcc23

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
line source
1 #include <glib.h>
2 #include <stdio.h>
3 #include <stdlib.h>
5 #include "base64.h"
7 int main()
8 {
9 gchar line[100];
10 gchar *buf;
11 gint size;
13 while(fgets(line, 100, stdin)){
14 buf = base64_decode(line, &size);
15 fwrite(buf, size, 1, stdout);
16 g_free(buf);
17 }
18 exit(0);
19 }