Bump versions.
[gnutls.git] / src / cfg / cfgfile.h
blob7ed9d4ed8be396a4ab63c626ee1834b196280202
1 /*
2 * libcfg+ - precise command line & config file parsing library
4 * cfgfile.h - config file parsing header file
5 * ____________________________________________________________
7 * Developed by Ondrej Jombik <nepto@platon.sk>
8 * and Lubomir Host <rajo@platon.sk>
9 * Copyright (c) 2001-2004 Platon SDG, http://platon.sk/
10 * All rights reserved.
12 * See README file for more information about this software.
13 * See COPYING file for license information.
15 * Download the latest version from
16 * http://platon.sk/projects/libcfg+/
19 /* $Platon: libcfg+/src/cfgfile.h,v 1.13 2004/01/12 06:03:09 nepto Exp $ */
21 /**
22 * @file cfgfile.h
23 * @brief config file parsing header file
24 * @author Ondrej Jombik <nepto@platon.sk>
25 * @author Lubomir Host <rajo@platon.sk>
26 * @version \$Platon: libcfg+/src/cfgfile.h,v 1.13 2004/01/12 06:03:09 nepto Exp $
27 * @date 2001-2004
30 #ifndef _PLATON_CFG_CFGFILE_H
31 #define _PLATON_CFG_CFGFILE_H
33 /**
34 * Parse next config file option(s) and return its value (if non-zero)
35 * or error code.
37 * @param con initialized config file context
38 * @return next option val, code of error (CFG_ERROR_*)
39 * or CFG_OK on end
40 * @see cfg_error
41 * @see cfg_context
43 int cfg_cfgfile_get_next_opt(const CFG_CONTEXT con);
45 #endif /* _PLATON_CFG_CFGFILE_H */