Blame src/output/sfrt_output_name.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_name(const struct sfrt_unit_ctx * uctx, FILE * f)
f46039
{
f46039
	return fprintf(f,"%s\n",*uctx->path);
f46039
}