/* * Copyright (C) the libgit2 contributors. All rights reserved. * * This file is part of libgit2, distributed under the GNU GPL v2 with * a Linking Exception. For full terms see the included COPYING file. */#ifndef INCLUDE_diff_xdiff_h__#define INCLUDE_diff_xdiff_h__#include "diff.h"#include "diff_patch.h"#include "xdiff/xdiff.h"/* A git_xdiff_output is a git_diff_output with extra fields necessary * to use libxdiff. Calling git_xdiff_init() will set the diff_cb field * of the output to use xdiff to generate the diffs. */typedefstruct{git_diff_outputoutput;xdemitconf_tconfig;xpparam_tparams;xdemitcb_tcallback;}git_xdiff_output;voidgit_xdiff_init(git_xdiff_output*xo,constgit_diff_options*opts);#endif