1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*-
2 
3    caja-lib-self-check-functions.c: Wrapper for all self check functions
4    in Caja proper.
5 
6    Copyright (C) 2000 Eazel, Inc.
7 
8    This program is free software; you can redistribute it and/or
9    modify it under the terms of the GNU General Public License as
10    published by the Free Software Foundation; either version 2 of the
11    License, or (at your option) any later version.
12 
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16    General Public License for more details.
17 
18    You should have received a copy of the GNU General Public
19    License along with this program; if not, write to the
20    Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
21    Boston, MA 02110-1301, USA.
22 
23    Author: Darin Adler <darin@bentspoon.com>
24 */
25 
26 #include <config.h>
27 
28 #if ! defined (CAJA_OMIT_SELF_CHECK)
29 
30 #include "caja-lib-self-check-functions.h"
31 
32 void
caja_run_lib_self_checks(void)33 caja_run_lib_self_checks (void)
34 {
35     CAJA_LIB_FOR_EACH_SELF_CHECK_FUNCTION (EEL_CALL_SELF_CHECK_FUNCTION)
36 }
37 
38 #endif /* ! CAJA_OMIT_SELF_CHECK */
39