diff options
author | Mattias Andrée <maandree@kth.se> | 2024-01-09 22:04:24 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2024-01-09 22:04:24 +0100 |
commit | ae850b1ac755f471beac4dbfef4654fe3fbaaae9 (patch) | |
tree | 319e7f7f1b99cd1ee75e100f0a29b0f7c827ccea /libpatch_plain_fd_diff2_printer.c | |
download | libpatch-ae850b1ac755f471beac4dbfef4654fe3fbaaae9.tar.gz libpatch-ae850b1ac755f471beac4dbfef4654fe3fbaaae9.tar.bz2 libpatch-ae850b1ac755f471beac4dbfef4654fe3fbaaae9.tar.xz |
First commit
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | libpatch_plain_fd_diff2_printer.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libpatch_plain_fd_diff2_printer.c b/libpatch_plain_fd_diff2_printer.c new file mode 100644 index 0000000..9a33ce0 --- /dev/null +++ b/libpatch_plain_fd_diff2_printer.c @@ -0,0 +1,15 @@ +/* See LICENSE file for copyright and license details. */ +#include "common.h" + + +struct libpatch_diff2_printer * +libpatch_plain_fd_diff2_printer(int output) +{ + struct libpatch_diff2_printer *printer; + printer = libpatch_fd_diff2_printer__(output); + if (!printer) + return NULL; + libpatch_plain_diff2_printer__(printer); + return printer; + +} |