Blame src/xdiff/xinclude.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(XINCLUDE_H)
Packit Service 20376f
#define XINCLUDE_H
Packit Service 20376f
Packit Service 20376f
#include <ctype.h>
Packit Service 20376f
#include <stdio.h>
Packit Service 20376f
#include <stdlib.h>
Packit Service 20376f
#include <string.h>
Packit Service 20376f
#include <limits.h>
Packit Service 20376f
Packit Service 20376f
#ifdef _WIN32
Packit Service 20376f
#else
Packit Service 20376f
#include <unistd.h>
Packit Service 20376f
#endif
Packit Service 20376f
Packit Service 20376f
#include "xmacros.h"
Packit Service 20376f
#include "xdiff.h"
Packit Service 20376f
#include "xtypes.h"
Packit Service 20376f
#include "xutils.h"
Packit Service 20376f
#include "xprepare.h"
Packit Service 20376f
#include "xdiffi.h"
Packit Service 20376f
#include "xemit.h"
Packit Service 20376f
Packit Service 20376f
Packit Service 20376f
#endif /* #if !defined(XINCLUDE_H) */