view src/strt.c @ 0:21ce01de8109

Initial revision
author mmj
date Thu, 22 Apr 2004 04:02:09 +1000
parents
children
line wrap: on
line source

#include "../include/strgen.h"

int main()
{
	char *str = strgen(3, "fick ", "dich!", "\n");
	printf("[%s]", str);
	free(str);

	return 0;
}