• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

perl/H03-May-2022-1,7721,352

AUTHORSH A D28-Nov-2004492 1611

ChangeLogH A D10-Aug-20066.6 KiB175124

HACKINGH A D28-Nov-20041.4 KiB4531

Makefile.inH A D10-Aug-20066.3 KiB189122

READMEH A D10-Aug-20062.5 KiB5846

THANKSH A D10-Aug-2006800 2416

TODOH A D04-Dec-20041.3 KiB3428

aclocal.m4H A D10-Aug-200613.6 KiB416401

cfg-config.inH A D10-Aug-20064 KiB146110

cfg.3H A D10-Aug-200612.1 KiB379355

cfg.acH A D10-Aug-20062.4 KiB6256

cfg.hH A D10-Aug-20067 KiB16089

cfg.podH A D10-Aug-20068.3 KiB288212

cfg_buf.cH A D10-Aug-20065.8 KiB202145

cfg_buf.hH A D10-Aug-20062.1 KiB4914

cfg_data.cH A D10-Aug-20067.4 KiB258209

cfg_data.hH A D10-Aug-20062.1 KiB6021

cfg_fmt.cH A D10-Aug-200637.1 KiB1,190841

cfg_fmt.hH A D10-Aug-20063.2 KiB7634

cfg_global.hH A D10-Aug-20061.5 KiB417

cfg_grid.cH A D10-Aug-200617.3 KiB512321

cfg_grid.hH A D10-Aug-20062 KiB5014

cfg_main.cH A D10-Aug-20066 KiB218149

cfg_main.hH A D10-Aug-20061.7 KiB5015

cfg_node.cH A D10-Aug-200627.9 KiB923753

cfg_node.hH A D10-Aug-20062.2 KiB5916

cfg_syn.cH A D10-Aug-200611.9 KiB419311

cfg_syn.hH A D10-Aug-20062.9 KiB7834

cfg_syn_parse.cH A D10-Aug-200646.4 KiB1,7381,163

cfg_syn_parse.hH A D10-Aug-20062.6 KiB8838

cfg_syn_parse.yH A D10-Aug-20064.3 KiB170102

cfg_syn_scan.cH A D10-Aug-200668 KiB2,5411,683

cfg_syn_scan.lH A D10-Aug-20069.5 KiB382291

cfg_test.cH A D10-Aug-20064.1 KiB13174

cfg_test.cfgH A D10-Aug-20062.2 KiB7567

cfg_test.outH A D28-Nov-2004446 2423

cfg_util.cH A D10-Aug-20063.2 KiB9761

cfg_util.hH A D10-Aug-20061.5 KiB395

cfg_vers.cH A D10-Aug-2006996 4731

config.guessH A D07-Mar-200642.6 KiB1,4721,261

config.h.inH A D10-Aug-20063.3 KiB11778

config.subH A D07-Mar-200631.4 KiB1,6001,457

configureH A D10-Aug-2006726.9 KiB23,23818,459

configure.acH A D10-Aug-20062.4 KiB6353

libtool.m4H A D10-Aug-2006225.2 KiB6,3985,742

ltmain.shH A D07-Mar-2006191.8 KiB6,8645,416

shtoolH A D10-Aug-200653.7 KiB1,5461,265

README

1   _        ___  ____ ____  ____          __
2  |_|_ _   / _ \/ ___/ ___||  _ \    ___ / _| __ _
3  _|_||_| | | | \___ \___ \| |_) |  / __| |_ / _` |
4 |_||_|_| | |_| |___) |__) |  __/  | (__|  _| (_| |
5  |_|_|_|  \___/|____/____/|_|      \___|_|  \__, |
6                                             |___/
7  OSSP cfg - Configuration Parsing
8  Version 0.9.11 (10-Aug-2006)
9
10  ABSTRACT
11
12  OSSP cfg is a ISO-C library for parsing arbitrary C/C++-style
13  configuration files. A configuration is sequence of directives. Each
14  directive consists of zero or more tokens. Each token can be either
15  a string or again a complete sequence. This means the configuration
16  syntax has a recursive structure and this way allows to create
17  configurations with arbitrarily nested sections.
18
19  Additionally the configuration syntax provides complex
20  single/double/balanced quoting of tokens, hexadecimal/octal/decimal
21  character encodings, character escaping, C/C++ and Shell-style
22  comments, etc. The library API allows importing a configuration text
23  into an Abstract Syntax Tree (AST), traversing the AST and optionally
24  exporting the AST again as a configuration text.
25
26  COPYRIGHT AND LICENSE
27
28  Copyright (c) 2002-2006 Ralf S. Engelschall <rse@engelschall.com>
29  Copyright (c) 2002-2006 The OSSP Project <http://www.ossp.org/>
30
31  This file is part of OSSP cfg, a configuration parsing library which
32  can be found at http://www.ossp.org/pkg/lib/cfg/.
33
34  Permission to use, copy, modify, and distribute this software for
35  any purpose with or without fee is hereby granted, provided that
36  the above copyright notice and this permission notice appear in all
37  copies.
38
39  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
40  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
41  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
42  IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
43  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
45  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
46  USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
47  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
48  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
49  OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50  SUCH DAMAGE.
51
52  INTERNET LOCATIONS
53
54  Homepage:     http://www.ossp.org/pkg/lib/cfg/
55  Repository:   http://cvs.ossp.org/pkg/lib/cfg/
56  Distribution:  ftp://ftp.ossp.org/pkg/lib/cfg/
57
58