<?php
/*
 * This file is part of kusaba.
 *
 * kusaba is free software; you can redistribute it and/or modify it under the
 * terms of the GNU General Public License as published by the Free Software
 * Foundation; either version 2 of the License, or (at your option) any later
 * version.
 *
 * kusaba is distributed in the hope that it will be useful, but WITHOUT ANY
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
 * A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * kusaba; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */
/** 
 * Miscellaneous functions used throughout the script.
 *
 * The functions script has no theme; any and all functions which are used globally
 * will be found in this file.
 * 
 * @package kusaba  
 */

include KU_ROOTDIR . 'inc/func/apc.php';
include KU_ROOTDIR . 'inc/func/backcompat.php';
include KU_ROOTDIR . 'inc/func/calculations.php';
include KU_ROOTDIR . 'inc/func/directories.php';
include KU_ROOTDIR . 'inc/func/encryption.php';
include KU_ROOTDIR . 'inc/func/fetching.php';
include KU_ROOTDIR . 'inc/func/html.php';
include KU_ROOTDIR . 'inc/func/misc.php';
include KU_ROOTDIR . 'inc/func/module.php';
include KU_ROOTDIR . 'inc/func/numberformatting.php';
include KU_ROOTDIR . 'inc/func/pages.php';
include KU_ROOTDIR . 'inc/func/paths.php';
include KU_ROOTDIR . 'inc/func/posts.php';
include KU_ROOTDIR . 'inc/func/stringformatting.php';
include KU_ROOTDIR . 'inc/func/validation.php';

?>