Main Page | Modules | Alphabetical List | Data Structures | File List | Data Fields | Related Pages

blah.c

00001 /* 00002 00003 The BLAH library, a container library 00004 Copyright (C) 1997-2004 The CDG Team <cdg@nats.informatik.uni-hamburg.de> 00005 00006 This program is free software; you can redistribute it and/or modify 00007 it under the terms of the GNU General Public License as published by 00008 the Free Software Foundation; either version 2 of the License, or 00009 (at your option) any later version. 00010 00011 This program is distributed in the hope that it will be useful, 00012 but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 GNU General Public License for more details. 00015 00016 You should have received a copy of the GNU General Public License 00017 along with this program; if not, write to the Free Software 00018 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 00019 00020 Contact: blah@nats.informatik.uni-hamburg.de 00021 00022 $Id: blah.c,v 1.2 2004/02/25 14:36:41 micha Exp $ 00023 00024 */ 00025 00026 /* ---------------------------------------------------------------------------- 00027 * @addtogroup Blah Main module 00028 * 00029 * This is the main module for the BLAH library. By now it provides the 00030 * initialization and finalization of the library. So call blahInitialize() 00031 * before using any functions of this library. You might want to call 00032 * blahFinalize() before exiting your application. 00033 * 00034 * @{ 00035 */ 00036 #include "blah.h" 00037 00038 /* ---------------------------------------------------------------------------- 00039 * initialize the blah library. 00040 * This will call the initlialization routines of those modules that need 00041 * to be initialized at application start. 00042 */ 00043 void blahInitialize(void) 00044 { 00045 strInitialize(); 00046 } 00047 00048 /* ---------------------------------------------------------------------------- 00049 * finalize the blah library. 00050 * This will call the finalization routines of those modules that might need a 00051 * finalization. 00052 */ 00053 void blahFinalize(void) 00054 { 00055 strFinalize(); 00056 } 00057 00058 /* ------------------------------------------------------------------------- */ 00059 /** @} */

BLAH 0.95 (20 Oct 2004)