Blame src/xdiff/xprepare.h

Packit Service 20376f
/*
Packit Service 20376f
 *  LibXDiff by Davide Libenzi ( File Differential Library )
Packit Service 20376f
 *  Copyright (C) 2003  Davide Libenzi
Packit Service 20376f
 *
Packit Service 20376f
 *  This library is free software; you can redistribute it and/or
Packit Service 20376f
 *  modify it under the terms of the GNU Lesser General Public
Packit Service 20376f
 *  License as published by the Free Software Foundation; either
Packit Service 20376f
 *  version 2.1 of the License, or (at your option) any later version.
Packit Service 20376f
 *
Packit Service 20376f
 *  This library is distributed in the hope that it will be useful,
Packit Service 20376f
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 20376f
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 20376f
 *  Lesser General Public License for more details.
Packit Service 20376f
 *
Packit Service 20376f
 *  You should have received a copy of the GNU Lesser General Public
Packit Service 20376f
 *  License along with this library; if not, write to the Free Software
Packit Service 20376f
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
Packit Service 20376f
 *
Packit Service 20376f
 *  Davide Libenzi <davidel@xmailserver.org>
Packit Service 20376f
 *
Packit Service 20376f
 */
Packit Service 20376f
Packit Service 20376f
#if !defined(XPREPARE_H)
Packit Service 20376f
#define XPREPARE_H
Packit Service 20376f
Packit Service 20376f
Packit Service 20376f
Packit Service 20376f
int xdl_prepare_env(mmfile_t *mf1, mmfile_t *mf2, xpparam_t const *xpp,
Packit Service 20376f
		    xdfenv_t *xe);
Packit Service 20376f
void xdl_free_env(xdfenv_t *xe);
Packit Service 20376f
Packit Service 20376f
Packit Service 20376f
Packit Service 20376f
#endif /* #if !defined(XPREPARE_H) */