Mercurial > masqmail
comparison src/base64/base64enc.c @ 10:26e34ae9a3e3
changed indention and line wrapping to a more consistent style
author | meillo@marmaro.de |
---|---|
date | Mon, 27 Oct 2008 16:23:10 +0100 |
parents | 08114f7dcc23 |
children |
comparison
equal
deleted
inserted
replaced
9:31cc8a89cb74 | 10:26e34ae9a3e3 |
---|---|
1 | |
2 #include <glib.h> | 1 #include <glib.h> |
3 #include <stdio.h> | 2 #include <stdio.h> |
4 #include <stdlib.h> | 3 #include <stdlib.h> |
5 | 4 |
6 #include "base64.h" | 5 #include "base64.h" |
7 | 6 |
8 int main() | 7 int |
8 main() | |
9 { | 9 { |
10 gchar in[58]; | 10 gchar in[58]; |
11 gint size; | 11 gint size; |
12 | 12 |
13 do{ | 13 do { |
14 gchar *out; | 14 gchar *out; |
15 | 15 |
16 size = fread(in, 1, 54, stdin); | 16 size = fread(in, 1, 54, stdin); |
17 out = base64_encode(in, size); | 17 out = base64_encode(in, size); |
18 fputs(out, stdout); | 18 fputs(out, stdout); |
19 putchar('\n'); | 19 putchar('\n'); |
20 g_free(out); | 20 g_free(out); |
21 }while(size == 54); | 21 } while (size == 54); |
22 exit(0); | 22 exit(0); |
23 } | 23 } |
24 |