Mercurial > masqmail
view src/base64/base64enc.c @ 157:586f001f5bbd
local_hosts defaults to localhost;foo;foo.example.org now
it is generated from the value of host_name
author | meillo@marmaro.de |
---|---|
date | Thu, 08 Jul 2010 09:59:52 +0200 |
parents | 26e34ae9a3e3 |
children |
line wrap: on
line source
#include <glib.h> #include <stdio.h> #include <stdlib.h> #include "base64.h" int main() { gchar in[58]; gint size; do { gchar *out; size = fread(in, 1, 54, stdin); out = base64_encode(in, size); fputs(out, stdout); putchar('\n'); g_free(out); } while (size == 54); exit(0); }