masqmail
view src/base64/base64dec.c @ 8:7e01b9096bb6
removed tests from Makefiles
author | meillo@marmaro.de |
---|---|
date | Mon, 27 Oct 2008 16:20:41 +0100 |
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 }