Mercurial > masqmail
annotate src/base64/base64enc.c @ 5:3cafdebd1479
removed remaining reference to docs in Makefile
author | meillo@marmaro.de |
---|---|
date | Fri, 26 Sep 2008 22:15:26 +0200 |
parents | 08114f7dcc23 |
children | 26e34ae9a3e3 |
rev | line source |
---|---|
0 | 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 |