Blame src/output/sfrt_output_dummy.c

f46039
#include <stdint.h>
f46039
#include <stdlib.h>
f46039
#include <stdio.h>
f46039
#include <string.h>
f46039
#include <errno.h>
f46039
f46039
#include <sofort/sofort.h>
f46039
f46039
sfrt_api
f46039
int sfrt_output_dummy (const struct sfrt_common_ctx * cctx, FILE * f)
f46039
{
f46039
	return fprintf(f,"%s\n",cctx->anystring ? cctx->anystring : "(null)");
f46039
}