aboutsummaryrefslogblamecommitdiffstats
path: root/libpatch_plain_stream_diff2_printer.c
blob: 443b8ab7c47d190408ba6d8186f359f396a92855 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                                          
/* See LICENSE file for copyright and license details. */
#include "common.h"


struct libpatch_diff2_printer *
libpatch_plain_stream_diff2_printer(FILE *output)
{
	struct libpatch_diff2_printer *printer;
	printer = libpatch_stream_diff2_printer__(output);
	if (!printer)
		return NULL;
	libpatch_plain_diff2_printer__(printer);
	return printer;
	
}