src/ucx.c

Tue, 17 Oct 2017 16:15:41 +0200

author
Mike Becker <universe@uap-core.de>
date
Tue, 17 Oct 2017 16:15:41 +0200
changeset 251
fae240d633fc
parent 250
ucx/ucx.c@b7d1317b138e
child 259
2f5dea574a75
permissions
-rw-r--r--

changes source directory structure in preperation for autotools rollout

universe@114 1 /**
universe@114 2 * @mainpage UAP Common Extensions
universe@114 3 * Library with common and useful functions, macros and data structures.
universe@114 4 * <p>
universe@114 5 * Latest available source:<br/>
universe@114 6 * <a href="https://develop.uap-core.de/hg/ucx">
universe@114 7 * https://develop.uap-core.de/hg/ucx</a>
universe@114 8 * </p>
universe@114 9 *
universe@114 10 * <h2>LICENCE</h2>
universe@114 11 *
universe@250 12 * Copyright 2017 Olaf Wintermann. All rights reserved.
universe@114 13 *
universe@114 14 * Redistribution and use in source and binary forms, with or without
universe@114 15 * modification, are permitted provided that the following conditions are met:
universe@114 16 *
universe@114 17 * 1. Redistributions of source code must retain the above copyright
universe@114 18 * notice, this list of conditions and the following disclaimer.
universe@114 19 *
universe@114 20 * 2. Redistributions in binary form must reproduce the above copyright
universe@114 21 * notice, this list of conditions and the following disclaimer in the
universe@114 22 * documentation and/or other materials provided with the distribution.
universe@114 23 *
universe@114 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@114 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@114 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
universe@114 27 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
universe@114 28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
universe@114 29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
universe@114 30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
universe@114 31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
universe@114 32 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
universe@114 33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
universe@114 34 * POSSIBILITY OF SUCH DAMAGE.
universe@114 35 */
universe@114 36
universe@251 37 #include "ucx/ucx.h"

mercurial