summaryrefslogtreecommitdiffhomepage
path: root/src/output/sfrt_output_dummy.c
blob: 4342737fd3ac8e815fadd286c010f10347741d16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>

#include <sofort/sofort.h>

sfrt_api
int sfrt_output_dummy (const struct sfrt_common_ctx * cctx, FILE * f)
{
	return fprintf(f,"%s\n",cctx->anystring ? cctx->anystring : "(null)");
}