00001 /* 00002 * libcfg+ - precise command line & config file parsing library 00003 * 00004 * shared.h - shared stuff for command line and config file 00005 * parsing header file 00006 * ____________________________________________________________ 00007 * 00008 * Developed by Ondrej Jombik <nepto@pobox.sk> 00009 * Copyright (c) 2001-2002 Platon SDG, http://www.platon.sk/ 00010 * All rights reserved. 00011 * 00012 * See README file for more information about this software. 00013 * See COPYING file for license information. 00014 * 00015 * Download the latest version from 00016 * http://www.platon.sk/projects/libcfg+/ 00017 */ 00018 00019 /* $Id: shared.h,v 1.4 2002/04/21 10:08:40 jombik9 Exp $ */ 00020 00029 #ifndef _PLATON_CFG_SHARED_H 00030 #define _PLATON_CFG_SHARED_H 00031 00039 void __cfg_free_currents(const CFG_CONTEXT con); 00040 00050 int __cfg_process_currents(const CFG_CONTEXT con, int *ret_val, int *arg_used); 00051 00059 int __cfg_cmdline_set_currents(const CFG_CONTEXT con); 00060 00069 int __cfg_cfgfile_set_currents(const CFG_CONTEXT con, char *buf); 00070 00071 #endif /* #ifndef _PLATON_CFG_SHARED_H */ 00072