view src/base64/base64enc.c @ 219:c5d319418813

added config-transition this script takes config files and checks them for obsolete options if any found, it outputs them if called with -v it also explains how to substitute them the usual call: config-transition -v /etc/masqmail/*
author meillo@marmaro.de
date Wed, 21 Jul 2010 22:12:55 +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);
}