added license and copyright notice to all files

Thu, 28 Feb 2013 08:50:24 +0100

author
Mike Becker <universe@uap-core.de>
date
Thu, 28 Feb 2013 08:50:24 +0100
changeset 103
08018864fb91
parent 102
7c8ebad4d973
child 104
9d3dea320d8e

added license and copyright notice to all files

LICENSE file | annotate | diff | comparison | revisions
Makefile file | annotate | diff | comparison | revisions
g++-debug.mk file | annotate | diff | comparison | revisions
g++.mk file | annotate | diff | comparison | revisions
gcc-debug.mk file | annotate | diff | comparison | revisions
gcc.mk file | annotate | diff | comparison | revisions
osx-debug.mk file | annotate | diff | comparison | revisions
osx.mk file | annotate | diff | comparison | revisions
suncc-debug.mk file | annotate | diff | comparison | revisions
suncc.mk file | annotate | diff | comparison | revisions
test/Makefile file | annotate | diff | comparison | revisions
test/buffer_tests.c file | annotate | diff | comparison | revisions
test/buffer_tests.h file | annotate | diff | comparison | revisions
test/dlist_tests.c file | annotate | diff | comparison | revisions
test/dlist_tests.h file | annotate | diff | comparison | revisions
test/list_tests.c file | annotate | diff | comparison | revisions
test/list_tests.h file | annotate | diff | comparison | revisions
test/logging_tests.c file | annotate | diff | comparison | revisions
test/logging_tests.h file | annotate | diff | comparison | revisions
test/main.c file | annotate | diff | comparison | revisions
test/main.h file | annotate | diff | comparison | revisions
test/map_tests.c file | annotate | diff | comparison | revisions
test/map_tests.h file | annotate | diff | comparison | revisions
test/mpool_tests.c file | annotate | diff | comparison | revisions
test/mpool_tests.h file | annotate | diff | comparison | revisions
test/string_tests.c file | annotate | diff | comparison | revisions
test/string_tests.h file | annotate | diff | comparison | revisions
ucx/Makefile file | annotate | diff | comparison | revisions
ucx/allocator.c file | annotate | diff | comparison | revisions
ucx/allocator.h file | annotate | diff | comparison | revisions
ucx/buffer.c file | annotate | diff | comparison | revisions
ucx/buffer.h file | annotate | diff | comparison | revisions
ucx/dlist.c file | annotate | diff | comparison | revisions
ucx/dlist.h file | annotate | diff | comparison | revisions
ucx/list.c file | annotate | diff | comparison | revisions
ucx/list.h file | annotate | diff | comparison | revisions
ucx/logging.c file | annotate | diff | comparison | revisions
ucx/logging.h file | annotate | diff | comparison | revisions
ucx/map.c file | annotate | diff | comparison | revisions
ucx/map.h file | annotate | diff | comparison | revisions
ucx/mempool.c file | annotate | diff | comparison | revisions
ucx/mempool.h file | annotate | diff | comparison | revisions
ucx/string.c file | annotate | diff | comparison | revisions
ucx/string.h file | annotate | diff | comparison | revisions
ucx/test.c file | annotate | diff | comparison | revisions
ucx/test.h file | annotate | diff | comparison | revisions
ucx/ucx.h file | annotate | diff | comparison | revisions
ucx/utils.c file | annotate | diff | comparison | revisions
ucx/utils.h file | annotate | diff | comparison | revisions
windows.mk file | annotate | diff | comparison | revisions
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/LICENSE	Thu Feb 28 08:50:24 2013 +0100
     1.3 @@ -0,0 +1,25 @@
     1.4 +Copyright 2013 Olaf Wintermann. All rights reserved.
     1.5 +
     1.6 +Redistribution and use in source and binary forms, with or without
     1.7 +modification, are permitted provided that the following conditions are met:
     1.8 +
     1.9 +  1. Redistributions of source code must retain the above copyright
    1.10 +     notice, this list of conditions and the following disclaimer.
    1.11 +
    1.12 +  2. Redistributions in binary form must reproduce the above copyright
    1.13 +     notice, this list of conditions and the following disclaimer in the
    1.14 +     documentation and/or other materials provided with the distribution.
    1.15 +
    1.16 +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    1.17 +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    1.18 +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    1.19 +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
    1.20 +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
    1.21 +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
    1.22 +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
    1.23 +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    1.24 +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    1.25 +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    1.26 +POSSIBILITY OF SUCH DAMAGE.
    1.27 +
    1.28 +
     2.1 --- a/Makefile	Thu Feb 28 08:17:26 2013 +0100
     2.2 +++ b/Makefile	Thu Feb 28 08:50:24 2013 +0100
     2.3 @@ -1,7 +1,7 @@
     2.4  #
     2.5  # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     2.6  #
     2.7 -# Copyright 2011 Olaf Wintermann. All rights reserved.
     2.8 +# Copyright 2013 Olaf Wintermann. All rights reserved.
     2.9  #
    2.10  # Redistribution and use in source and binary forms, with or without
    2.11  # modification, are permitted provided that the following conditions are met:
     3.1 --- a/g++-debug.mk	Thu Feb 28 08:17:26 2013 +0100
     3.2 +++ b/g++-debug.mk	Thu Feb 28 08:50:24 2013 +0100
     3.3 @@ -1,7 +1,7 @@
     3.4  #
     3.5  # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3.6  #
     3.7 -# Copyright 2011 Olaf Wintermann. All rights reserved.
     3.8 +# Copyright 2013 Olaf Wintermann. All rights reserved.
     3.9  #
    3.10  # Redistribution and use in source and binary forms, with or without
    3.11  # modification, are permitted provided that the following conditions are met:
     4.1 --- a/g++.mk	Thu Feb 28 08:17:26 2013 +0100
     4.2 +++ b/g++.mk	Thu Feb 28 08:50:24 2013 +0100
     4.3 @@ -1,7 +1,7 @@
     4.4  #
     4.5  # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     4.6  #
     4.7 -# Copyright 2011 Olaf Wintermann. All rights reserved.
     4.8 +# Copyright 2013 Olaf Wintermann. All rights reserved.
     4.9  #
    4.10  # Redistribution and use in source and binary forms, with or without
    4.11  # modification, are permitted provided that the following conditions are met:
     5.1 --- a/gcc-debug.mk	Thu Feb 28 08:17:26 2013 +0100
     5.2 +++ b/gcc-debug.mk	Thu Feb 28 08:50:24 2013 +0100
     5.3 @@ -1,7 +1,7 @@
     5.4  #
     5.5  # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     5.6  #
     5.7 -# Copyright 2011 Olaf Wintermann. All rights reserved.
     5.8 +# Copyright 2013 Olaf Wintermann. All rights reserved.
     5.9  #
    5.10  # Redistribution and use in source and binary forms, with or without
    5.11  # modification, are permitted provided that the following conditions are met:
     6.1 --- a/gcc.mk	Thu Feb 28 08:17:26 2013 +0100
     6.2 +++ b/gcc.mk	Thu Feb 28 08:50:24 2013 +0100
     6.3 @@ -1,7 +1,7 @@
     6.4  #
     6.5  # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     6.6  #
     6.7 -# Copyright 2011 Olaf Wintermann. All rights reserved.
     6.8 +# Copyright 2013 Olaf Wintermann. All rights reserved.
     6.9  #
    6.10  # Redistribution and use in source and binary forms, with or without
    6.11  # modification, are permitted provided that the following conditions are met:
     7.1 --- a/osx-debug.mk	Thu Feb 28 08:17:26 2013 +0100
     7.2 +++ b/osx-debug.mk	Thu Feb 28 08:50:24 2013 +0100
     7.3 @@ -1,7 +1,7 @@
     7.4  #
     7.5  # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     7.6  #
     7.7 -# Copyright 2011 Olaf Wintermann. All rights reserved.
     7.8 +# Copyright 2013 Olaf Wintermann. All rights reserved.
     7.9  #
    7.10  # Redistribution and use in source and binary forms, with or without
    7.11  # modification, are permitted provided that the following conditions are met:
     8.1 --- a/osx.mk	Thu Feb 28 08:17:26 2013 +0100
     8.2 +++ b/osx.mk	Thu Feb 28 08:50:24 2013 +0100
     8.3 @@ -1,7 +1,7 @@
     8.4  #
     8.5  # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     8.6  #
     8.7 -# Copyright 2011 Olaf Wintermann. All rights reserved.
     8.8 +# Copyright 2013 Olaf Wintermann. All rights reserved.
     8.9  #
    8.10  # Redistribution and use in source and binary forms, with or without
    8.11  # modification, are permitted provided that the following conditions are met:
     9.1 --- a/suncc-debug.mk	Thu Feb 28 08:17:26 2013 +0100
     9.2 +++ b/suncc-debug.mk	Thu Feb 28 08:50:24 2013 +0100
     9.3 @@ -1,7 +1,7 @@
     9.4  #
     9.5  # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     9.6  #
     9.7 -# Copyright 2011 Olaf Wintermann. All rights reserved.
     9.8 +# Copyright 2013 Olaf Wintermann. All rights reserved.
     9.9  #
    9.10  # Redistribution and use in source and binary forms, with or without
    9.11  # modification, are permitted provided that the following conditions are met:
    10.1 --- a/suncc.mk	Thu Feb 28 08:17:26 2013 +0100
    10.2 +++ b/suncc.mk	Thu Feb 28 08:50:24 2013 +0100
    10.3 @@ -1,7 +1,7 @@
    10.4  #
    10.5  # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    10.6  #
    10.7 -# Copyright 2011 Olaf Wintermann. All rights reserved.
    10.8 +# Copyright 2013 Olaf Wintermann. All rights reserved.
    10.9  #
   10.10  # Redistribution and use in source and binary forms, with or without
   10.11  # modification, are permitted provided that the following conditions are met:
    11.1 --- a/test/Makefile	Thu Feb 28 08:17:26 2013 +0100
    11.2 +++ b/test/Makefile	Thu Feb 28 08:50:24 2013 +0100
    11.3 @@ -1,7 +1,7 @@
    11.4  #
    11.5  # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    11.6  #
    11.7 -# Copyright 2011 Olaf Wintermann. All rights reserved.
    11.8 +# Copyright 2013 Olaf Wintermann. All rights reserved.
    11.9  #
   11.10  # Redistribution and use in source and binary forms, with or without
   11.11  # modification, are permitted provided that the following conditions are met:
    12.1 --- a/test/buffer_tests.c	Thu Feb 28 08:17:26 2013 +0100
    12.2 +++ b/test/buffer_tests.c	Thu Feb 28 08:50:24 2013 +0100
    12.3 @@ -1,5 +1,29 @@
    12.4  /*
    12.5 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    12.6   *
    12.7 + * Copyright 2013 Olaf Wintermann. All rights reserved.
    12.8 + *
    12.9 + * Redistribution and use in source and binary forms, with or without
   12.10 + * modification, are permitted provided that the following conditions are met:
   12.11 + *
   12.12 + *   1. Redistributions of source code must retain the above copyright
   12.13 + *      notice, this list of conditions and the following disclaimer.
   12.14 + *
   12.15 + *   2. Redistributions in binary form must reproduce the above copyright
   12.16 + *      notice, this list of conditions and the following disclaimer in the
   12.17 + *      documentation and/or other materials provided with the distribution.
   12.18 + *
   12.19 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   12.20 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   12.21 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   12.22 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   12.23 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   12.24 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   12.25 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   12.26 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   12.27 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   12.28 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   12.29 + * POSSIBILITY OF SUCH DAMAGE.
   12.30   */
   12.31  
   12.32  #include "buffer_tests.h"
    13.1 --- a/test/buffer_tests.h	Thu Feb 28 08:17:26 2013 +0100
    13.2 +++ b/test/buffer_tests.h	Thu Feb 28 08:50:24 2013 +0100
    13.3 @@ -1,5 +1,29 @@
    13.4 -/* 
    13.5 +/*
    13.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    13.7   *
    13.8 + * Copyright 2013 Olaf Wintermann. All rights reserved.
    13.9 + *
   13.10 + * Redistribution and use in source and binary forms, with or without
   13.11 + * modification, are permitted provided that the following conditions are met:
   13.12 + *
   13.13 + *   1. Redistributions of source code must retain the above copyright
   13.14 + *      notice, this list of conditions and the following disclaimer.
   13.15 + *
   13.16 + *   2. Redistributions in binary form must reproduce the above copyright
   13.17 + *      notice, this list of conditions and the following disclaimer in the
   13.18 + *      documentation and/or other materials provided with the distribution.
   13.19 + *
   13.20 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   13.21 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   13.22 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   13.23 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   13.24 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   13.25 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   13.26 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   13.27 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   13.28 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   13.29 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   13.30 + * POSSIBILITY OF SUCH DAMAGE.
   13.31   */
   13.32  
   13.33  #ifndef MEMSTREAM_TEST_H
    14.1 --- a/test/dlist_tests.c	Thu Feb 28 08:17:26 2013 +0100
    14.2 +++ b/test/dlist_tests.c	Thu Feb 28 08:50:24 2013 +0100
    14.3 @@ -1,5 +1,29 @@
    14.4  /*
    14.5 - * tests of dlist implementation
    14.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    14.7 + *
    14.8 + * Copyright 2013 Olaf Wintermann. All rights reserved.
    14.9 + *
   14.10 + * Redistribution and use in source and binary forms, with or without
   14.11 + * modification, are permitted provided that the following conditions are met:
   14.12 + *
   14.13 + *   1. Redistributions of source code must retain the above copyright
   14.14 + *      notice, this list of conditions and the following disclaimer.
   14.15 + *
   14.16 + *   2. Redistributions in binary form must reproduce the above copyright
   14.17 + *      notice, this list of conditions and the following disclaimer in the
   14.18 + *      documentation and/or other materials provided with the distribution.
   14.19 + *
   14.20 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   14.21 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   14.22 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   14.23 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   14.24 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   14.25 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   14.26 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   14.27 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   14.28 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   14.29 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   14.30 + * POSSIBILITY OF SUCH DAMAGE.
   14.31   */
   14.32  
   14.33  #include "dlist_tests.h"
    15.1 --- a/test/dlist_tests.h	Thu Feb 28 08:17:26 2013 +0100
    15.2 +++ b/test/dlist_tests.h	Thu Feb 28 08:50:24 2013 +0100
    15.3 @@ -1,8 +1,29 @@
    15.4 -/* 
    15.5 - * File:   dlist_tests.h
    15.6 - * Author: Mike
    15.7 +/*
    15.8 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    15.9   *
   15.10 - * Created on 18. Februar 2012, 18:26
   15.11 + * Copyright 2013 Olaf Wintermann. All rights reserved.
   15.12 + *
   15.13 + * Redistribution and use in source and binary forms, with or without
   15.14 + * modification, are permitted provided that the following conditions are met:
   15.15 + *
   15.16 + *   1. Redistributions of source code must retain the above copyright
   15.17 + *      notice, this list of conditions and the following disclaimer.
   15.18 + *
   15.19 + *   2. Redistributions in binary form must reproduce the above copyright
   15.20 + *      notice, this list of conditions and the following disclaimer in the
   15.21 + *      documentation and/or other materials provided with the distribution.
   15.22 + *
   15.23 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   15.24 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   15.25 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   15.26 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   15.27 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   15.28 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   15.29 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   15.30 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   15.31 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   15.32 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   15.33 + * POSSIBILITY OF SUCH DAMAGE.
   15.34   */
   15.35  
   15.36  #ifndef DLIST_TESTS_H
    16.1 --- a/test/list_tests.c	Thu Feb 28 08:17:26 2013 +0100
    16.2 +++ b/test/list_tests.c	Thu Feb 28 08:50:24 2013 +0100
    16.3 @@ -1,5 +1,29 @@
    16.4  /*
    16.5 - * tests of list implementation
    16.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    16.7 + *
    16.8 + * Copyright 2013 Olaf Wintermann. All rights reserved.
    16.9 + *
   16.10 + * Redistribution and use in source and binary forms, with or without
   16.11 + * modification, are permitted provided that the following conditions are met:
   16.12 + *
   16.13 + *   1. Redistributions of source code must retain the above copyright
   16.14 + *      notice, this list of conditions and the following disclaimer.
   16.15 + *
   16.16 + *   2. Redistributions in binary form must reproduce the above copyright
   16.17 + *      notice, this list of conditions and the following disclaimer in the
   16.18 + *      documentation and/or other materials provided with the distribution.
   16.19 + *
   16.20 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   16.21 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   16.22 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   16.23 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   16.24 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   16.25 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   16.26 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   16.27 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   16.28 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   16.29 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   16.30 + * POSSIBILITY OF SUCH DAMAGE.
   16.31   */
   16.32  
   16.33  #include "list_tests.h"
    17.1 --- a/test/list_tests.h	Thu Feb 28 08:17:26 2013 +0100
    17.2 +++ b/test/list_tests.h	Thu Feb 28 08:50:24 2013 +0100
    17.3 @@ -1,8 +1,29 @@
    17.4 -/* 
    17.5 - * File:   list_tests.h
    17.6 - * Author: olaf
    17.7 +/*
    17.8 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    17.9   *
   17.10 - * Created on 31. Dezember 2011, 18:07
   17.11 + * Copyright 2013 Olaf Wintermann. All rights reserved.
   17.12 + *
   17.13 + * Redistribution and use in source and binary forms, with or without
   17.14 + * modification, are permitted provided that the following conditions are met:
   17.15 + *
   17.16 + *   1. Redistributions of source code must retain the above copyright
   17.17 + *      notice, this list of conditions and the following disclaimer.
   17.18 + *
   17.19 + *   2. Redistributions in binary form must reproduce the above copyright
   17.20 + *      notice, this list of conditions and the following disclaimer in the
   17.21 + *      documentation and/or other materials provided with the distribution.
   17.22 + *
   17.23 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   17.24 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   17.25 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   17.26 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   17.27 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   17.28 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   17.29 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   17.30 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   17.31 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   17.32 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   17.33 + * POSSIBILITY OF SUCH DAMAGE.
   17.34   */
   17.35  
   17.36  #ifndef LIST_TESTS_H
    18.1 --- a/test/logging_tests.c	Thu Feb 28 08:17:26 2013 +0100
    18.2 +++ b/test/logging_tests.c	Thu Feb 28 08:50:24 2013 +0100
    18.3 @@ -1,5 +1,29 @@
    18.4  /*
    18.5 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    18.6   *
    18.7 + * Copyright 2013 Olaf Wintermann. All rights reserved.
    18.8 + *
    18.9 + * Redistribution and use in source and binary forms, with or without
   18.10 + * modification, are permitted provided that the following conditions are met:
   18.11 + *
   18.12 + *   1. Redistributions of source code must retain the above copyright
   18.13 + *      notice, this list of conditions and the following disclaimer.
   18.14 + *
   18.15 + *   2. Redistributions in binary form must reproduce the above copyright
   18.16 + *      notice, this list of conditions and the following disclaimer in the
   18.17 + *      documentation and/or other materials provided with the distribution.
   18.18 + *
   18.19 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   18.20 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   18.21 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   18.22 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   18.23 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   18.24 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   18.25 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   18.26 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   18.27 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   18.28 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   18.29 + * POSSIBILITY OF SUCH DAMAGE.
   18.30   */
   18.31  
   18.32  #include "logging_tests.h"
    19.1 --- a/test/logging_tests.h	Thu Feb 28 08:17:26 2013 +0100
    19.2 +++ b/test/logging_tests.h	Thu Feb 28 08:50:24 2013 +0100
    19.3 @@ -1,5 +1,29 @@
    19.4 -/* 
    19.5 +/*
    19.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    19.7   *
    19.8 + * Copyright 2013 Olaf Wintermann. All rights reserved.
    19.9 + *
   19.10 + * Redistribution and use in source and binary forms, with or without
   19.11 + * modification, are permitted provided that the following conditions are met:
   19.12 + *
   19.13 + *   1. Redistributions of source code must retain the above copyright
   19.14 + *      notice, this list of conditions and the following disclaimer.
   19.15 + *
   19.16 + *   2. Redistributions in binary form must reproduce the above copyright
   19.17 + *      notice, this list of conditions and the following disclaimer in the
   19.18 + *      documentation and/or other materials provided with the distribution.
   19.19 + *
   19.20 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   19.21 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   19.22 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   19.23 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   19.24 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   19.25 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   19.26 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   19.27 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   19.28 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   19.29 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   19.30 + * POSSIBILITY OF SUCH DAMAGE.
   19.31   */
   19.32  
   19.33  #ifndef LOGGING_TESTS_H
    20.1 --- a/test/main.c	Thu Feb 28 08:17:26 2013 +0100
    20.2 +++ b/test/main.c	Thu Feb 28 08:50:24 2013 +0100
    20.3 @@ -1,7 +1,7 @@
    20.4  /*
    20.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    20.6   *
    20.7 - * Copyright 2011 Olaf Wintermann. All rights reserved.
    20.8 + * Copyright 2013 Olaf Wintermann. All rights reserved.
    20.9   *
   20.10   * Redistribution and use in source and binary forms, with or without
   20.11   * modification, are permitted provided that the following conditions are met:
    21.1 --- a/test/main.h	Thu Feb 28 08:17:26 2013 +0100
    21.2 +++ b/test/main.h	Thu Feb 28 08:50:24 2013 +0100
    21.3 @@ -1,8 +1,29 @@
    21.4 -/* 
    21.5 - * File:   main.h
    21.6 - * Author: Mike
    21.7 +/*
    21.8 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    21.9   *
   21.10 - * Created on 18. Februar 2012, 18:33
   21.11 + * Copyright 2013 Olaf Wintermann. All rights reserved.
   21.12 + *
   21.13 + * Redistribution and use in source and binary forms, with or without
   21.14 + * modification, are permitted provided that the following conditions are met:
   21.15 + *
   21.16 + *   1. Redistributions of source code must retain the above copyright
   21.17 + *      notice, this list of conditions and the following disclaimer.
   21.18 + *
   21.19 + *   2. Redistributions in binary form must reproduce the above copyright
   21.20 + *      notice, this list of conditions and the following disclaimer in the
   21.21 + *      documentation and/or other materials provided with the distribution.
   21.22 + *
   21.23 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   21.24 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   21.25 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   21.26 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   21.27 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   21.28 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   21.29 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   21.30 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   21.31 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   21.32 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   21.33 + * POSSIBILITY OF SUCH DAMAGE.
   21.34   */
   21.35  
   21.36  #ifndef MAIN_H
    22.1 --- a/test/map_tests.c	Thu Feb 28 08:17:26 2013 +0100
    22.2 +++ b/test/map_tests.c	Thu Feb 28 08:50:24 2013 +0100
    22.3 @@ -1,5 +1,29 @@
    22.4  /*
    22.5 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    22.6   *
    22.7 + * Copyright 2013 Olaf Wintermann. All rights reserved.
    22.8 + *
    22.9 + * Redistribution and use in source and binary forms, with or without
   22.10 + * modification, are permitted provided that the following conditions are met:
   22.11 + *
   22.12 + *   1. Redistributions of source code must retain the above copyright
   22.13 + *      notice, this list of conditions and the following disclaimer.
   22.14 + *
   22.15 + *   2. Redistributions in binary form must reproduce the above copyright
   22.16 + *      notice, this list of conditions and the following disclaimer in the
   22.17 + *      documentation and/or other materials provided with the distribution.
   22.18 + *
   22.19 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   22.20 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   22.21 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   22.22 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   22.23 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   22.24 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   22.25 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   22.26 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   22.27 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   22.28 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   22.29 + * POSSIBILITY OF SUCH DAMAGE.
   22.30   */
   22.31  
   22.32  #include "map_tests.h"
    23.1 --- a/test/map_tests.h	Thu Feb 28 08:17:26 2013 +0100
    23.2 +++ b/test/map_tests.h	Thu Feb 28 08:50:24 2013 +0100
    23.3 @@ -1,5 +1,29 @@
    23.4 -/* 
    23.5 +/*
    23.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    23.7   *
    23.8 + * Copyright 2013 Olaf Wintermann. All rights reserved.
    23.9 + *
   23.10 + * Redistribution and use in source and binary forms, with or without
   23.11 + * modification, are permitted provided that the following conditions are met:
   23.12 + *
   23.13 + *   1. Redistributions of source code must retain the above copyright
   23.14 + *      notice, this list of conditions and the following disclaimer.
   23.15 + *
   23.16 + *   2. Redistributions in binary form must reproduce the above copyright
   23.17 + *      notice, this list of conditions and the following disclaimer in the
   23.18 + *      documentation and/or other materials provided with the distribution.
   23.19 + *
   23.20 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   23.21 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   23.22 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   23.23 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   23.24 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   23.25 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   23.26 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   23.27 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   23.28 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   23.29 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   23.30 + * POSSIBILITY OF SUCH DAMAGE.
   23.31   */
   23.32  
   23.33  #ifndef MAP_TESTS_H
    24.1 --- a/test/mpool_tests.c	Thu Feb 28 08:17:26 2013 +0100
    24.2 +++ b/test/mpool_tests.c	Thu Feb 28 08:50:24 2013 +0100
    24.3 @@ -1,5 +1,29 @@
    24.4  /*
    24.5 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    24.6   *
    24.7 + * Copyright 2013 Olaf Wintermann. All rights reserved.
    24.8 + *
    24.9 + * Redistribution and use in source and binary forms, with or without
   24.10 + * modification, are permitted provided that the following conditions are met:
   24.11 + *
   24.12 + *   1. Redistributions of source code must retain the above copyright
   24.13 + *      notice, this list of conditions and the following disclaimer.
   24.14 + *
   24.15 + *   2. Redistributions in binary form must reproduce the above copyright
   24.16 + *      notice, this list of conditions and the following disclaimer in the
   24.17 + *      documentation and/or other materials provided with the distribution.
   24.18 + *
   24.19 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   24.20 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   24.21 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   24.22 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   24.23 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   24.24 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   24.25 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   24.26 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   24.27 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   24.28 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   24.29 + * POSSIBILITY OF SUCH DAMAGE.
   24.30   */
   24.31  
   24.32  #include <stdint.h>
    25.1 --- a/test/mpool_tests.h	Thu Feb 28 08:17:26 2013 +0100
    25.2 +++ b/test/mpool_tests.h	Thu Feb 28 08:50:24 2013 +0100
    25.3 @@ -1,5 +1,29 @@
    25.4 -/* 
    25.5 +/*
    25.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    25.7   *
    25.8 + * Copyright 2013 Olaf Wintermann. All rights reserved.
    25.9 + *
   25.10 + * Redistribution and use in source and binary forms, with or without
   25.11 + * modification, are permitted provided that the following conditions are met:
   25.12 + *
   25.13 + *   1. Redistributions of source code must retain the above copyright
   25.14 + *      notice, this list of conditions and the following disclaimer.
   25.15 + *
   25.16 + *   2. Redistributions in binary form must reproduce the above copyright
   25.17 + *      notice, this list of conditions and the following disclaimer in the
   25.18 + *      documentation and/or other materials provided with the distribution.
   25.19 + *
   25.20 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   25.21 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   25.22 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   25.23 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   25.24 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   25.25 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   25.26 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   25.27 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   25.28 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   25.29 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   25.30 + * POSSIBILITY OF SUCH DAMAGE.
   25.31   */
   25.32  
   25.33  #ifndef MPOOL_TESTS_H
    26.1 --- a/test/string_tests.c	Thu Feb 28 08:17:26 2013 +0100
    26.2 +++ b/test/string_tests.c	Thu Feb 28 08:50:24 2013 +0100
    26.3 @@ -1,5 +1,29 @@
    26.4  /*
    26.5 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    26.6   *
    26.7 + * Copyright 2013 Olaf Wintermann. All rights reserved.
    26.8 + *
    26.9 + * Redistribution and use in source and binary forms, with or without
   26.10 + * modification, are permitted provided that the following conditions are met:
   26.11 + *
   26.12 + *   1. Redistributions of source code must retain the above copyright
   26.13 + *      notice, this list of conditions and the following disclaimer.
   26.14 + *
   26.15 + *   2. Redistributions in binary form must reproduce the above copyright
   26.16 + *      notice, this list of conditions and the following disclaimer in the
   26.17 + *      documentation and/or other materials provided with the distribution.
   26.18 + *
   26.19 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   26.20 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   26.21 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   26.22 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   26.23 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   26.24 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   26.25 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   26.26 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   26.27 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   26.28 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   26.29 + * POSSIBILITY OF SUCH DAMAGE.
   26.30   */
   26.31  
   26.32  #include "string_tests.h"
    27.1 --- a/test/string_tests.h	Thu Feb 28 08:17:26 2013 +0100
    27.2 +++ b/test/string_tests.h	Thu Feb 28 08:50:24 2013 +0100
    27.3 @@ -1,5 +1,29 @@
    27.4 -/* 
    27.5 +/*
    27.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    27.7   *
    27.8 + * Copyright 2013 Olaf Wintermann. All rights reserved.
    27.9 + *
   27.10 + * Redistribution and use in source and binary forms, with or without
   27.11 + * modification, are permitted provided that the following conditions are met:
   27.12 + *
   27.13 + *   1. Redistributions of source code must retain the above copyright
   27.14 + *      notice, this list of conditions and the following disclaimer.
   27.15 + *
   27.16 + *   2. Redistributions in binary form must reproduce the above copyright
   27.17 + *      notice, this list of conditions and the following disclaimer in the
   27.18 + *      documentation and/or other materials provided with the distribution.
   27.19 + *
   27.20 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   27.21 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   27.22 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   27.23 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   27.24 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   27.25 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   27.26 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   27.27 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   27.28 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   27.29 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   27.30 + * POSSIBILITY OF SUCH DAMAGE.
   27.31   */
   27.32  
   27.33  #ifndef STRING_TESTS_H
    28.1 --- a/ucx/Makefile	Thu Feb 28 08:17:26 2013 +0100
    28.2 +++ b/ucx/Makefile	Thu Feb 28 08:50:24 2013 +0100
    28.3 @@ -1,7 +1,7 @@
    28.4  #
    28.5  # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    28.6  #
    28.7 -# Copyright 2011 Olaf Wintermann. All rights reserved.
    28.8 +# Copyright 2013 Olaf Wintermann. All rights reserved.
    28.9  #
   28.10  # Redistribution and use in source and binary forms, with or without
   28.11  # modification, are permitted provided that the following conditions are met:
    29.1 --- a/ucx/allocator.c	Thu Feb 28 08:17:26 2013 +0100
    29.2 +++ b/ucx/allocator.c	Thu Feb 28 08:50:24 2013 +0100
    29.3 @@ -1,3 +1,31 @@
    29.4 +/*
    29.5 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    29.6 + *
    29.7 + * Copyright 2013 Olaf Wintermann. All rights reserved.
    29.8 + *
    29.9 + * Redistribution and use in source and binary forms, with or without
   29.10 + * modification, are permitted provided that the following conditions are met:
   29.11 + *
   29.12 + *   1. Redistributions of source code must retain the above copyright
   29.13 + *      notice, this list of conditions and the following disclaimer.
   29.14 + *
   29.15 + *   2. Redistributions in binary form must reproduce the above copyright
   29.16 + *      notice, this list of conditions and the following disclaimer in the
   29.17 + *      documentation and/or other materials provided with the distribution.
   29.18 + *
   29.19 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   29.20 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   29.21 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   29.22 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   29.23 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   29.24 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   29.25 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   29.26 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   29.27 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   29.28 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   29.29 + * POSSIBILITY OF SUCH DAMAGE.
   29.30 + */
   29.31 +
   29.32  #include <stdlib.h>
   29.33  #include "allocator.h"
   29.34  
    30.1 --- a/ucx/allocator.h	Thu Feb 28 08:17:26 2013 +0100
    30.2 +++ b/ucx/allocator.h	Thu Feb 28 08:50:24 2013 +0100
    30.3 @@ -1,3 +1,31 @@
    30.4 +/*
    30.5 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    30.6 + *
    30.7 + * Copyright 2013 Olaf Wintermann. All rights reserved.
    30.8 + *
    30.9 + * Redistribution and use in source and binary forms, with or without
   30.10 + * modification, are permitted provided that the following conditions are met:
   30.11 + *
   30.12 + *   1. Redistributions of source code must retain the above copyright
   30.13 + *      notice, this list of conditions and the following disclaimer.
   30.14 + *
   30.15 + *   2. Redistributions in binary form must reproduce the above copyright
   30.16 + *      notice, this list of conditions and the following disclaimer in the
   30.17 + *      documentation and/or other materials provided with the distribution.
   30.18 + *
   30.19 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   30.20 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   30.21 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   30.22 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   30.23 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   30.24 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   30.25 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   30.26 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   30.27 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   30.28 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   30.29 + * POSSIBILITY OF SUCH DAMAGE.
   30.30 + */
   30.31 +
   30.32  #ifndef ALLOCATOR_H
   30.33  #define	ALLOCATOR_H
   30.34  
    31.1 --- a/ucx/buffer.c	Thu Feb 28 08:17:26 2013 +0100
    31.2 +++ b/ucx/buffer.c	Thu Feb 28 08:50:24 2013 +0100
    31.3 @@ -1,3 +1,31 @@
    31.4 +/*
    31.5 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    31.6 + *
    31.7 + * Copyright 2013 Olaf Wintermann. All rights reserved.
    31.8 + *
    31.9 + * Redistribution and use in source and binary forms, with or without
   31.10 + * modification, are permitted provided that the following conditions are met:
   31.11 + *
   31.12 + *   1. Redistributions of source code must retain the above copyright
   31.13 + *      notice, this list of conditions and the following disclaimer.
   31.14 + *
   31.15 + *   2. Redistributions in binary form must reproduce the above copyright
   31.16 + *      notice, this list of conditions and the following disclaimer in the
   31.17 + *      documentation and/or other materials provided with the distribution.
   31.18 + *
   31.19 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   31.20 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   31.21 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   31.22 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   31.23 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   31.24 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   31.25 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   31.26 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   31.27 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   31.28 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   31.29 + * POSSIBILITY OF SUCH DAMAGE.
   31.30 + */
   31.31 +
   31.32  #include "buffer.h"
   31.33  #include <stdarg.h>
   31.34  #include <stdlib.h>
    32.1 --- a/ucx/buffer.h	Thu Feb 28 08:17:26 2013 +0100
    32.2 +++ b/ucx/buffer.h	Thu Feb 28 08:50:24 2013 +0100
    32.3 @@ -1,3 +1,31 @@
    32.4 +/*
    32.5 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    32.6 + *
    32.7 + * Copyright 2013 Olaf Wintermann. All rights reserved.
    32.8 + *
    32.9 + * Redistribution and use in source and binary forms, with or without
   32.10 + * modification, are permitted provided that the following conditions are met:
   32.11 + *
   32.12 + *   1. Redistributions of source code must retain the above copyright
   32.13 + *      notice, this list of conditions and the following disclaimer.
   32.14 + *
   32.15 + *   2. Redistributions in binary form must reproduce the above copyright
   32.16 + *      notice, this list of conditions and the following disclaimer in the
   32.17 + *      documentation and/or other materials provided with the distribution.
   32.18 + *
   32.19 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   32.20 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   32.21 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   32.22 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   32.23 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   32.24 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   32.25 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   32.26 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   32.27 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   32.28 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   32.29 + * POSSIBILITY OF SUCH DAMAGE.
   32.30 + */
   32.31 +
   32.32  #ifndef BUFFER_H
   32.33  #define	BUFFER_H
   32.34  
    33.1 --- a/ucx/dlist.c	Thu Feb 28 08:17:26 2013 +0100
    33.2 +++ b/ucx/dlist.c	Thu Feb 28 08:50:24 2013 +0100
    33.3 @@ -1,3 +1,31 @@
    33.4 +/*
    33.5 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    33.6 + *
    33.7 + * Copyright 2013 Olaf Wintermann. All rights reserved.
    33.8 + *
    33.9 + * Redistribution and use in source and binary forms, with or without
   33.10 + * modification, are permitted provided that the following conditions are met:
   33.11 + *
   33.12 + *   1. Redistributions of source code must retain the above copyright
   33.13 + *      notice, this list of conditions and the following disclaimer.
   33.14 + *
   33.15 + *   2. Redistributions in binary form must reproduce the above copyright
   33.16 + *      notice, this list of conditions and the following disclaimer in the
   33.17 + *      documentation and/or other materials provided with the distribution.
   33.18 + *
   33.19 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   33.20 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   33.21 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   33.22 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   33.23 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   33.24 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   33.25 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   33.26 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   33.27 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   33.28 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   33.29 + * POSSIBILITY OF SUCH DAMAGE.
   33.30 + */
   33.31 +
   33.32  #include "dlist.h"
   33.33  
   33.34  UcxDlist *ucx_dlist_clone(UcxDlist *l, copy_func fnc, void *data) {
    34.1 --- a/ucx/dlist.h	Thu Feb 28 08:17:26 2013 +0100
    34.2 +++ b/ucx/dlist.h	Thu Feb 28 08:50:24 2013 +0100
    34.3 @@ -1,5 +1,29 @@
    34.4 -/* 
    34.5 - * 
    34.6 +/*
    34.7 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    34.8 + *
    34.9 + * Copyright 2013 Olaf Wintermann. All rights reserved.
   34.10 + *
   34.11 + * Redistribution and use in source and binary forms, with or without
   34.12 + * modification, are permitted provided that the following conditions are met:
   34.13 + *
   34.14 + *   1. Redistributions of source code must retain the above copyright
   34.15 + *      notice, this list of conditions and the following disclaimer.
   34.16 + *
   34.17 + *   2. Redistributions in binary form must reproduce the above copyright
   34.18 + *      notice, this list of conditions and the following disclaimer in the
   34.19 + *      documentation and/or other materials provided with the distribution.
   34.20 + *
   34.21 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   34.22 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   34.23 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   34.24 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   34.25 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   34.26 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   34.27 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   34.28 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   34.29 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   34.30 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   34.31 + * POSSIBILITY OF SUCH DAMAGE.
   34.32   */
   34.33  
   34.34  #ifndef DLIST_H
    35.1 --- a/ucx/list.c	Thu Feb 28 08:17:26 2013 +0100
    35.2 +++ b/ucx/list.c	Thu Feb 28 08:50:24 2013 +0100
    35.3 @@ -1,3 +1,31 @@
    35.4 +/*
    35.5 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    35.6 + *
    35.7 + * Copyright 2013 Olaf Wintermann. All rights reserved.
    35.8 + *
    35.9 + * Redistribution and use in source and binary forms, with or without
   35.10 + * modification, are permitted provided that the following conditions are met:
   35.11 + *
   35.12 + *   1. Redistributions of source code must retain the above copyright
   35.13 + *      notice, this list of conditions and the following disclaimer.
   35.14 + *
   35.15 + *   2. Redistributions in binary form must reproduce the above copyright
   35.16 + *      notice, this list of conditions and the following disclaimer in the
   35.17 + *      documentation and/or other materials provided with the distribution.
   35.18 + *
   35.19 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   35.20 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   35.21 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   35.22 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   35.23 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   35.24 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   35.25 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   35.26 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   35.27 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   35.28 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   35.29 + * POSSIBILITY OF SUCH DAMAGE.
   35.30 + */
   35.31 +
   35.32  #include "list.h"
   35.33  
   35.34  UcxList *ucx_list_clone(UcxList *l, copy_func fnc, void *data) {
    36.1 --- a/ucx/list.h	Thu Feb 28 08:17:26 2013 +0100
    36.2 +++ b/ucx/list.h	Thu Feb 28 08:50:24 2013 +0100
    36.3 @@ -1,5 +1,29 @@
    36.4  /*
    36.5 - * 
    36.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    36.7 + *
    36.8 + * Copyright 2013 Olaf Wintermann. All rights reserved.
    36.9 + *
   36.10 + * Redistribution and use in source and binary forms, with or without
   36.11 + * modification, are permitted provided that the following conditions are met:
   36.12 + *
   36.13 + *   1. Redistributions of source code must retain the above copyright
   36.14 + *      notice, this list of conditions and the following disclaimer.
   36.15 + *
   36.16 + *   2. Redistributions in binary form must reproduce the above copyright
   36.17 + *      notice, this list of conditions and the following disclaimer in the
   36.18 + *      documentation and/or other materials provided with the distribution.
   36.19 + *
   36.20 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   36.21 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   36.22 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   36.23 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   36.24 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   36.25 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   36.26 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   36.27 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   36.28 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   36.29 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   36.30 + * POSSIBILITY OF SUCH DAMAGE.
   36.31   */
   36.32  
   36.33  #ifndef LIST_H
    37.1 --- a/ucx/logging.c	Thu Feb 28 08:17:26 2013 +0100
    37.2 +++ b/ucx/logging.c	Thu Feb 28 08:50:24 2013 +0100
    37.3 @@ -1,3 +1,31 @@
    37.4 +/*
    37.5 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    37.6 + *
    37.7 + * Copyright 2013 Olaf Wintermann. All rights reserved.
    37.8 + *
    37.9 + * Redistribution and use in source and binary forms, with or without
   37.10 + * modification, are permitted provided that the following conditions are met:
   37.11 + *
   37.12 + *   1. Redistributions of source code must retain the above copyright
   37.13 + *      notice, this list of conditions and the following disclaimer.
   37.14 + *
   37.15 + *   2. Redistributions in binary form must reproduce the above copyright
   37.16 + *      notice, this list of conditions and the following disclaimer in the
   37.17 + *      documentation and/or other materials provided with the distribution.
   37.18 + *
   37.19 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   37.20 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   37.21 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   37.22 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   37.23 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   37.24 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   37.25 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   37.26 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   37.27 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   37.28 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   37.29 + * POSSIBILITY OF SUCH DAMAGE.
   37.30 + */
   37.31 +
   37.32  #include "logging.h"
   37.33  #include <stdlib.h>
   37.34  #include <string.h>
    38.1 --- a/ucx/logging.h	Thu Feb 28 08:17:26 2013 +0100
    38.2 +++ b/ucx/logging.h	Thu Feb 28 08:50:24 2013 +0100
    38.3 @@ -1,3 +1,31 @@
    38.4 +/*
    38.5 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    38.6 + *
    38.7 + * Copyright 2013 Olaf Wintermann. All rights reserved.
    38.8 + *
    38.9 + * Redistribution and use in source and binary forms, with or without
   38.10 + * modification, are permitted provided that the following conditions are met:
   38.11 + *
   38.12 + *   1. Redistributions of source code must retain the above copyright
   38.13 + *      notice, this list of conditions and the following disclaimer.
   38.14 + *
   38.15 + *   2. Redistributions in binary form must reproduce the above copyright
   38.16 + *      notice, this list of conditions and the following disclaimer in the
   38.17 + *      documentation and/or other materials provided with the distribution.
   38.18 + *
   38.19 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   38.20 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   38.21 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   38.22 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   38.23 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   38.24 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   38.25 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   38.26 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   38.27 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   38.28 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   38.29 + * POSSIBILITY OF SUCH DAMAGE.
   38.30 + */
   38.31 +
   38.32  #ifndef LOGGING_H
   38.33  #define LOGGING_H
   38.34  
    39.1 --- a/ucx/map.c	Thu Feb 28 08:17:26 2013 +0100
    39.2 +++ b/ucx/map.c	Thu Feb 28 08:50:24 2013 +0100
    39.3 @@ -1,5 +1,29 @@
    39.4  /*
    39.5 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    39.6   *
    39.7 + * Copyright 2013 Olaf Wintermann. All rights reserved.
    39.8 + *
    39.9 + * Redistribution and use in source and binary forms, with or without
   39.10 + * modification, are permitted provided that the following conditions are met:
   39.11 + *
   39.12 + *   1. Redistributions of source code must retain the above copyright
   39.13 + *      notice, this list of conditions and the following disclaimer.
   39.14 + *
   39.15 + *   2. Redistributions in binary form must reproduce the above copyright
   39.16 + *      notice, this list of conditions and the following disclaimer in the
   39.17 + *      documentation and/or other materials provided with the distribution.
   39.18 + *
   39.19 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   39.20 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   39.21 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   39.22 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   39.23 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   39.24 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   39.25 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   39.26 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   39.27 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   39.28 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   39.29 + * POSSIBILITY OF SUCH DAMAGE.
   39.30   */
   39.31  
   39.32  #include <stdlib.h>
    40.1 --- a/ucx/map.h	Thu Feb 28 08:17:26 2013 +0100
    40.2 +++ b/ucx/map.h	Thu Feb 28 08:50:24 2013 +0100
    40.3 @@ -1,5 +1,29 @@
    40.4  /*
    40.5 - * 
    40.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    40.7 + *
    40.8 + * Copyright 2013 Olaf Wintermann. All rights reserved.
    40.9 + *
   40.10 + * Redistribution and use in source and binary forms, with or without
   40.11 + * modification, are permitted provided that the following conditions are met:
   40.12 + *
   40.13 + *   1. Redistributions of source code must retain the above copyright
   40.14 + *      notice, this list of conditions and the following disclaimer.
   40.15 + *
   40.16 + *   2. Redistributions in binary form must reproduce the above copyright
   40.17 + *      notice, this list of conditions and the following disclaimer in the
   40.18 + *      documentation and/or other materials provided with the distribution.
   40.19 + *
   40.20 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   40.21 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   40.22 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   40.23 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   40.24 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   40.25 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   40.26 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   40.27 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   40.28 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   40.29 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   40.30 + * POSSIBILITY OF SUCH DAMAGE.
   40.31   */
   40.32  
   40.33  #ifndef MAP_H
    41.1 --- a/ucx/mempool.c	Thu Feb 28 08:17:26 2013 +0100
    41.2 +++ b/ucx/mempool.c	Thu Feb 28 08:50:24 2013 +0100
    41.3 @@ -1,5 +1,29 @@
    41.4  /*
    41.5 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    41.6   *
    41.7 + * Copyright 2013 Olaf Wintermann. All rights reserved.
    41.8 + *
    41.9 + * Redistribution and use in source and binary forms, with or without
   41.10 + * modification, are permitted provided that the following conditions are met:
   41.11 + *
   41.12 + *   1. Redistributions of source code must retain the above copyright
   41.13 + *      notice, this list of conditions and the following disclaimer.
   41.14 + *
   41.15 + *   2. Redistributions in binary form must reproduce the above copyright
   41.16 + *      notice, this list of conditions and the following disclaimer in the
   41.17 + *      documentation and/or other materials provided with the distribution.
   41.18 + *
   41.19 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   41.20 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   41.21 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   41.22 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   41.23 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   41.24 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   41.25 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   41.26 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   41.27 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   41.28 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   41.29 + * POSSIBILITY OF SUCH DAMAGE.
   41.30   */
   41.31  
   41.32  #include <stdlib.h>
    42.1 --- a/ucx/mempool.h	Thu Feb 28 08:17:26 2013 +0100
    42.2 +++ b/ucx/mempool.h	Thu Feb 28 08:50:24 2013 +0100
    42.3 @@ -1,5 +1,29 @@
    42.4 -/* 
    42.5 +/*
    42.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    42.7   *
    42.8 + * Copyright 2013 Olaf Wintermann. All rights reserved.
    42.9 + *
   42.10 + * Redistribution and use in source and binary forms, with or without
   42.11 + * modification, are permitted provided that the following conditions are met:
   42.12 + *
   42.13 + *   1. Redistributions of source code must retain the above copyright
   42.14 + *      notice, this list of conditions and the following disclaimer.
   42.15 + *
   42.16 + *   2. Redistributions in binary form must reproduce the above copyright
   42.17 + *      notice, this list of conditions and the following disclaimer in the
   42.18 + *      documentation and/or other materials provided with the distribution.
   42.19 + *
   42.20 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   42.21 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   42.22 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   42.23 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   42.24 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   42.25 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   42.26 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   42.27 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   42.28 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   42.29 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   42.30 + * POSSIBILITY OF SUCH DAMAGE.
   42.31   */
   42.32  
   42.33  #ifndef MPOOL_H
    43.1 --- a/ucx/string.c	Thu Feb 28 08:17:26 2013 +0100
    43.2 +++ b/ucx/string.c	Thu Feb 28 08:50:24 2013 +0100
    43.3 @@ -1,8 +1,29 @@
    43.4  /*
    43.5 - * File:   sstring.c
    43.6 - * Author: olaf
    43.7 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    43.8   *
    43.9 - * Created on 17. Juni 2010, 13:27
   43.10 + * Copyright 2013 Olaf Wintermann. All rights reserved.
   43.11 + *
   43.12 + * Redistribution and use in source and binary forms, with or without
   43.13 + * modification, are permitted provided that the following conditions are met:
   43.14 + *
   43.15 + *   1. Redistributions of source code must retain the above copyright
   43.16 + *      notice, this list of conditions and the following disclaimer.
   43.17 + *
   43.18 + *   2. Redistributions in binary form must reproduce the above copyright
   43.19 + *      notice, this list of conditions and the following disclaimer in the
   43.20 + *      documentation and/or other materials provided with the distribution.
   43.21 + *
   43.22 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   43.23 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   43.24 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   43.25 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   43.26 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   43.27 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   43.28 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   43.29 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   43.30 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   43.31 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   43.32 + * POSSIBILITY OF SUCH DAMAGE.
   43.33   */
   43.34  
   43.35  #include <stdlib.h>
    44.1 --- a/ucx/string.h	Thu Feb 28 08:17:26 2013 +0100
    44.2 +++ b/ucx/string.h	Thu Feb 28 08:50:24 2013 +0100
    44.3 @@ -1,8 +1,29 @@
    44.4  /*
    44.5 - * File:   sstring.h
    44.6 - * Author: olaf
    44.7 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    44.8   *
    44.9 - * Created on 17. Juni 2010, 13:26
   44.10 + * Copyright 2013 Olaf Wintermann. All rights reserved.
   44.11 + *
   44.12 + * Redistribution and use in source and binary forms, with or without
   44.13 + * modification, are permitted provided that the following conditions are met:
   44.14 + *
   44.15 + *   1. Redistributions of source code must retain the above copyright
   44.16 + *      notice, this list of conditions and the following disclaimer.
   44.17 + *
   44.18 + *   2. Redistributions in binary form must reproduce the above copyright
   44.19 + *      notice, this list of conditions and the following disclaimer in the
   44.20 + *      documentation and/or other materials provided with the distribution.
   44.21 + *
   44.22 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   44.23 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   44.24 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   44.25 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   44.26 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   44.27 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   44.28 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   44.29 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   44.30 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   44.31 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   44.32 + * POSSIBILITY OF SUCH DAMAGE.
   44.33   */
   44.34  
   44.35  #ifndef _SSTRING_H
    45.1 --- a/ucx/test.c	Thu Feb 28 08:17:26 2013 +0100
    45.2 +++ b/ucx/test.c	Thu Feb 28 08:50:24 2013 +0100
    45.3 @@ -1,8 +1,29 @@
    45.4 -/* 
    45.5 - * File:   test.c
    45.6 - * Author: Mike
    45.7 +/*
    45.8 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    45.9   *
   45.10 - * Created on 18. Februar 2012, 14:15
   45.11 + * Copyright 2013 Olaf Wintermann. All rights reserved.
   45.12 + *
   45.13 + * Redistribution and use in source and binary forms, with or without
   45.14 + * modification, are permitted provided that the following conditions are met:
   45.15 + *
   45.16 + *   1. Redistributions of source code must retain the above copyright
   45.17 + *      notice, this list of conditions and the following disclaimer.
   45.18 + *
   45.19 + *   2. Redistributions in binary form must reproduce the above copyright
   45.20 + *      notice, this list of conditions and the following disclaimer in the
   45.21 + *      documentation and/or other materials provided with the distribution.
   45.22 + *
   45.23 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   45.24 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   45.25 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   45.26 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   45.27 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   45.28 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   45.29 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   45.30 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   45.31 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   45.32 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   45.33 + * POSSIBILITY OF SUCH DAMAGE.
   45.34   */
   45.35  
   45.36  #include "test.h"
    46.1 --- a/ucx/test.h	Thu Feb 28 08:17:26 2013 +0100
    46.2 +++ b/ucx/test.h	Thu Feb 28 08:50:24 2013 +0100
    46.3 @@ -1,10 +1,32 @@
    46.4 -/* 
    46.5 - * File:   test.h
    46.6 - * Author: Mike
    46.7 +/*
    46.8 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    46.9   *
   46.10 - * Created on 18. Februar 2012, 14:15
   46.11 + * Copyright 2013 Olaf Wintermann. All rights reserved.
   46.12   *
   46.13 + * Redistribution and use in source and binary forms, with or without
   46.14 + * modification, are permitted provided that the following conditions are met:
   46.15   *
   46.16 + *   1. Redistributions of source code must retain the above copyright
   46.17 + *      notice, this list of conditions and the following disclaimer.
   46.18 + *
   46.19 + *   2. Redistributions in binary form must reproduce the above copyright
   46.20 + *      notice, this list of conditions and the following disclaimer in the
   46.21 + *      documentation and/or other materials provided with the distribution.
   46.22 + *
   46.23 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   46.24 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   46.25 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   46.26 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   46.27 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   46.28 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   46.29 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   46.30 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   46.31 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   46.32 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   46.33 + * POSSIBILITY OF SUCH DAMAGE.
   46.34 + */
   46.35 + 
   46.36 +/*
   46.37   *
   46.38   * Usage of this test framework:
   46.39   *
    47.1 --- a/ucx/ucx.h	Thu Feb 28 08:17:26 2013 +0100
    47.2 +++ b/ucx/ucx.h	Thu Feb 28 08:50:24 2013 +0100
    47.3 @@ -1,8 +1,29 @@
    47.4 -/* 
    47.5 - * File:   ucx.h
    47.6 - * Author: olaf
    47.7 +/*
    47.8 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    47.9   *
   47.10 - * Created on 31. Dezember 2011, 17:17
   47.11 + * Copyright 2013 Olaf Wintermann. All rights reserved.
   47.12 + *
   47.13 + * Redistribution and use in source and binary forms, with or without
   47.14 + * modification, are permitted provided that the following conditions are met:
   47.15 + *
   47.16 + *   1. Redistributions of source code must retain the above copyright
   47.17 + *      notice, this list of conditions and the following disclaimer.
   47.18 + *
   47.19 + *   2. Redistributions in binary form must reproduce the above copyright
   47.20 + *      notice, this list of conditions and the following disclaimer in the
   47.21 + *      documentation and/or other materials provided with the distribution.
   47.22 + *
   47.23 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   47.24 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   47.25 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   47.26 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   47.27 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   47.28 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   47.29 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   47.30 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   47.31 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   47.32 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   47.33 + * POSSIBILITY OF SUCH DAMAGE.
   47.34   */
   47.35  
   47.36  #ifndef UCX_H
    48.1 --- a/ucx/utils.c	Thu Feb 28 08:17:26 2013 +0100
    48.2 +++ b/ucx/utils.c	Thu Feb 28 08:50:24 2013 +0100
    48.3 @@ -1,3 +1,31 @@
    48.4 +/*
    48.5 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    48.6 + *
    48.7 + * Copyright 2013 Olaf Wintermann. All rights reserved.
    48.8 + *
    48.9 + * Redistribution and use in source and binary forms, with or without
   48.10 + * modification, are permitted provided that the following conditions are met:
   48.11 + *
   48.12 + *   1. Redistributions of source code must retain the above copyright
   48.13 + *      notice, this list of conditions and the following disclaimer.
   48.14 + *
   48.15 + *   2. Redistributions in binary form must reproduce the above copyright
   48.16 + *      notice, this list of conditions and the following disclaimer in the
   48.17 + *      documentation and/or other materials provided with the distribution.
   48.18 + *
   48.19 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   48.20 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   48.21 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   48.22 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   48.23 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   48.24 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   48.25 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   48.26 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   48.27 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   48.28 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   48.29 + * POSSIBILITY OF SUCH DAMAGE.
   48.30 + */
   48.31 +
   48.32  #include "utils.h"
   48.33  #include "math.h"
   48.34  
    49.1 --- a/ucx/utils.h	Thu Feb 28 08:17:26 2013 +0100
    49.2 +++ b/ucx/utils.h	Thu Feb 28 08:50:24 2013 +0100
    49.3 @@ -1,3 +1,31 @@
    49.4 +/*
    49.5 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    49.6 + *
    49.7 + * Copyright 2013 Olaf Wintermann. All rights reserved.
    49.8 + *
    49.9 + * Redistribution and use in source and binary forms, with or without
   49.10 + * modification, are permitted provided that the following conditions are met:
   49.11 + *
   49.12 + *   1. Redistributions of source code must retain the above copyright
   49.13 + *      notice, this list of conditions and the following disclaimer.
   49.14 + *
   49.15 + *   2. Redistributions in binary form must reproduce the above copyright
   49.16 + *      notice, this list of conditions and the following disclaimer in the
   49.17 + *      documentation and/or other materials provided with the distribution.
   49.18 + *
   49.19 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   49.20 + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   49.21 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   49.22 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
   49.23 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   49.24 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   49.25 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   49.26 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   49.27 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   49.28 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   49.29 + * POSSIBILITY OF SUCH DAMAGE.
   49.30 + */
   49.31 +
   49.32  #ifndef COMPARATOR_H
   49.33  #define	COMPARATOR_H
   49.34  
    50.1 --- a/windows.mk	Thu Feb 28 08:17:26 2013 +0100
    50.2 +++ b/windows.mk	Thu Feb 28 08:50:24 2013 +0100
    50.3 @@ -1,7 +1,7 @@
    50.4  #
    50.5  # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    50.6  #
    50.7 -# Copyright 2011 Olaf Wintermann. All rights reserved.
    50.8 +# Copyright 2013 Olaf Wintermann. All rights reserved.
    50.9  #
   50.10  # Redistribution and use in source and binary forms, with or without
   50.11  # modification, are permitted provided that the following conditions are met:

mercurial