view src/base64/base64enc.c @ 274:89199eda6144

fixed `To: alice, bob' with -t If rcpt headers contained an unqualified address followed by more addresses, they habe not been recognized. This should be fixed now.
author markus schnalke <meillo@marmaro.de>
date Fri, 03 Dec 2010 19:33:54 -0300
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);
}