Sha256: cd901780a608b1f38adc1a77e13a0e23b1277ec22a51336ebb656053a89f9bb2

Contents?: true

Size: 718 Bytes

Versions: 8

Compression:

Stored size: 718 Bytes

Contents

zconfig(3)
==========

NAME
----
zconfig - work with config files written in rfc.zeromq.org/spec:4/ZPL.

SYNOPSIS
--------
----
----

DESCRIPTION
-----------

Lets applications load, work with, and save configuration files.
This implements rfc.zeromq.org/spec:4/ZPL, which is a simple structured
text format for configuration files.


EXAMPLE
-------
.From zconfig_test method
----
    //  Create temporary directory for test files
#   define TESTDIR ".test_zconfig"
    zsys_dir_create (TESTDIR);
    
    zconfig_t *root = zconfig_new ("root", NULL);
    zconfig_t *section, *item;
    
    section = zconfig_new ("headers", root);
    item = zconfig_new ("email", section);
----

SEE ALSO
--------
linkczmq:czmq[7]

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
rbczmq-1.7.9 ext/czmq/doc/zconfig.txt
rbczmq-1.7.8 ext/czmq/doc/zconfig.txt
rbczmq-1.7.7 ext/czmq/doc/zconfig.txt
rbczmq-1.7.6 ext/czmq/doc/zconfig.txt
rbczmq-1.7.5 ext/czmq/doc/zconfig.txt
rbczmq-1.7.4 ext/czmq/doc/zconfig.txt
rbczmq-1.7.3 ext/czmq/doc/zconfig.txt
rbczmq-1.7.2 ext/czmq/doc/zconfig.txt