README

Fri, 12 Apr 2024 21:48:12 +0200

author
Mike Becker <universe@uap-core.de>
date
Fri, 12 Apr 2024 21:48:12 +0200
changeset 849
edb9f875b7f9
parent 760
52e49533e7b4
permissions
-rw-r--r--

improves interface of cx_sprintf() variants

     1 -------------------------------------------------------------------------------
     2                      UAP Common Extensions - UCX
     3 -------------------------------------------------------------------------------
     5 0. Table of Contents:
     7   1. Introduction  ........................................................ 15
     8   2. Build  ............................................................... 25
     9   3. Documentation  ....................................................... 44
    10   4. Contact  ............................................................. 57
    11   5. License  ............................................................. 64
    14 1. Introduction
    15 ---------------
    17 With this library we provide useful data structures and algorithms for common
    18 programmatic tasks in the C language. By design the features are divided into
    19 modules to minimize the library footprint. Using the build files you can create
    20 a static and a shared lib containing all modules, but you may also use the UCX
    21 sources in your project and compile specific modules by yourself to further
    22 minimize the footprint, e.g. when you need lists, but do not need hash maps.
    25 2. Build
    26 --------
    28 The build processes requires executing a simple configure script and calling
    29 make. You can clone the repository or download the sources from SourceForge.
    31     wget https://sourceforge.net/projects/ucx/files/ucx-latest.tar.gz
    32     tar -xzf ucx-latest.tar.gz
    33     cd ucx-latest
    35 Then execute ./configure with the options you like. You can get a list of
    36 all available options with ./configure --help. The recommended configuration
    37 for production builds is ./configure --release.
    39     ./configure --release
    40     make
    41     make check                 # only available when built with tests
    42     sudo make install
    44 3. Documentation
    45 ----------------
    47 Documentation is available at:
    49   https://develop.uap-core.de/ucx/index.html
    51 The code uses doxygen source code documentation. A html version of the
    52 documentation is also available here:
    54   https://develop.uap-core.de/ucx/api/index.html
    57 4. Contact
    58 ----------
    60   Olaf Wintermann    (olaf.wintermann@gmail.com)
    61   Mike Becker        (universe@uap-core.de)
    64 5. License
    65 ----------
    67 Copyright 2023 Mike Becker, Olaf Wintermann All rights reserved.
    69 Redistribution and use in source and binary forms, with or without
    70 modification, are permitted provided that the following conditions are met:
    72   1. Redistributions of source code must retain the above copyright
    73      notice, this list of conditions and the following disclaimer.
    75   2. Redistributions in binary form must reproduce the above copyright
    76      notice, this list of conditions and the following disclaimer in the
    77      documentation and/or other materials provided with the distribution.
    79 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    80 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    81 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    82 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
    83 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
    84 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
    85 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
    86 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    87 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    88 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    89 POSSIBILITY OF SUCH DAMAGE.

mercurial