masqmail-0.2
view src/base64/base64dec.c @ 9:31cc8a89cb74
removed tests from configure script
author | meillo@marmaro.de |
---|---|
date | Mon, 27 Oct 2008 16:21:27 +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 }