Blame src/linkcore.c

Packit Service a721b1
/* linkcore.c -- test program for linking with m17n-core.so.
Packit Service a721b1
   Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
Packit Service a721b1
     National Institute of Advanced Industrial Science and Technology (AIST)
Packit Service a721b1
     Registration Number H15PRO112
Packit Service a721b1
Packit Service a721b1
This file is part of the m17n library.
Packit Service a721b1
Packit Service a721b1
The m17n library is free software; you can redistribute it and/or
Packit Service a721b1
modify it under the terms of the GNU General Public License as
Packit Service a721b1
published by the Free Software Foundation; either version 2, or (at
Packit Service a721b1
your option) any later version.
Packit Service a721b1
Packit Service a721b1
The m17n library is distributed in the hope that it will be useful,
Packit Service a721b1
but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service a721b1
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service a721b1
GNU General Public License for more details.
Packit Service a721b1
Packit Service a721b1
You should have received a copy of the GNU General Public License
Packit Service a721b1
along with the m17n library; see the file COPYING.  If not, write to
Packit Service a721b1
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Packit Service a721b1
Boston, MA 02110-1301, USA.  */
Packit Service a721b1
Packit Service a721b1
#include <stdlib.h>
Packit Service a721b1
#include "m17n-core.h"
Packit Service a721b1
Packit Service a721b1
int
Packit Service a721b1
main ()
Packit Service a721b1
{
Packit Service a721b1
  M17N_INIT ();
Packit Service a721b1
  M17N_FINI ();
Packit Service a721b1
  exit (0);
Packit Service a721b1
}