updates documenting comments

Thu, 08 Sep 2016 15:12:56 +0200

author
Mike Becker <universe@uap-core.de>
date
Thu, 08 Sep 2016 15:12:56 +0200
changeset 225
a1a068c2c4ef
parent 224
f9ba63fc6a80
child 226
669136d4e3af

updates documenting comments

LICENSE file | annotate | diff | comparison | revisions
Makefile file | annotate | diff | comparison | revisions
README file | annotate | diff | comparison | revisions
clang.mk file | annotate | diff | comparison | revisions
g++.mk file | annotate | diff | comparison | revisions
gcc.mk file | annotate | diff | comparison | revisions
mingw.mk file | annotate | diff | comparison | revisions
osx.mk file | annotate | diff | comparison | revisions
suncc.mk file | annotate | diff | comparison | revisions
test/Makefile file | annotate | diff | comparison | revisions
test/allocator_tests.c file | annotate | diff | comparison | revisions
test/allocator_tests.h file | annotate | diff | comparison | revisions
test/avl_tests.c file | annotate | diff | comparison | revisions
test/avl_tests.h file | annotate | diff | comparison | revisions
test/buffer_tests.c file | annotate | diff | comparison | revisions
test/buffer_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/prop_tests.c file | annotate | diff | comparison | revisions
test/prop_tests.h file | annotate | diff | comparison | revisions
test/stack_tests.c file | annotate | diff | comparison | revisions
test/stack_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
test/utils_tests.c file | annotate | diff | comparison | revisions
test/utils_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/avl.c file | annotate | diff | comparison | revisions
ucx/avl.h file | annotate | diff | comparison | revisions
ucx/buffer.c file | annotate | diff | comparison | revisions
ucx/buffer.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/properties.c file | annotate | diff | comparison | revisions
ucx/properties.h file | annotate | diff | comparison | revisions
ucx/stack.c file | annotate | diff | comparison | revisions
ucx/stack.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.c 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
     1.1 --- a/LICENSE	Thu Sep 08 12:04:01 2016 +0200
     1.2 +++ b/LICENSE	Thu Sep 08 15:12:56 2016 +0200
     1.3 @@ -1,4 +1,4 @@
     1.4 -Copyright 2015 Olaf Wintermann. All rights reserved.
     1.5 +Copyright 2016 Olaf Wintermann. All rights reserved.
     1.6  
     1.7  Redistribution and use in source and binary forms, with or without
     1.8  modification, are permitted provided that the following conditions are met:
     2.1 --- a/Makefile	Thu Sep 08 12:04:01 2016 +0200
     2.2 +++ b/Makefile	Thu Sep 08 15:12:56 2016 +0200
     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 2015 Olaf Wintermann. All rights reserved.
     2.8 +# Copyright 2016 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/README	Thu Sep 08 12:04:01 2016 +0200
     3.2 +++ b/README	Thu Sep 08 15:12:56 2016 +0200
     3.3 @@ -87,7 +87,7 @@
     3.4  6. License
     3.5  ----------
     3.6  
     3.7 -Copyright 2015 Olaf Wintermann. All rights reserved.
     3.8 +Copyright 2016 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/clang.mk	Thu Sep 08 12:04:01 2016 +0200
     4.2 +++ b/clang.mk	Thu Sep 08 15:12:56 2016 +0200
     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 2015 Olaf Wintermann. All rights reserved.
     4.8 +# Copyright 2016 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/g++.mk	Thu Sep 08 12:04:01 2016 +0200
     5.2 +++ b/g++.mk	Thu Sep 08 15:12:56 2016 +0200
     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 2015 Olaf Wintermann. All rights reserved.
     5.8 +# Copyright 2016 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 Sep 08 12:04:01 2016 +0200
     6.2 +++ b/gcc.mk	Thu Sep 08 15:12:56 2016 +0200
     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 2015 Olaf Wintermann. All rights reserved.
     6.8 +# Copyright 2016 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/mingw.mk	Thu Sep 08 12:04:01 2016 +0200
     7.2 +++ b/mingw.mk	Thu Sep 08 15:12:56 2016 +0200
     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 2015 Olaf Wintermann. All rights reserved.
     7.8 +# Copyright 2016 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 Sep 08 12:04:01 2016 +0200
     8.2 +++ b/osx.mk	Thu Sep 08 15:12:56 2016 +0200
     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 2015 Olaf Wintermann. All rights reserved.
     8.8 +# Copyright 2016 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.mk	Thu Sep 08 12:04:01 2016 +0200
     9.2 +++ b/suncc.mk	Thu Sep 08 15:12:56 2016 +0200
     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 2015 Olaf Wintermann. All rights reserved.
     9.8 +# Copyright 2016 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/test/Makefile	Thu Sep 08 12:04:01 2016 +0200
    10.2 +++ b/test/Makefile	Thu Sep 08 15:12:56 2016 +0200
    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 2015 Olaf Wintermann. All rights reserved.
    10.8 +# Copyright 2016 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/allocator_tests.c	Thu Sep 08 12:04:01 2016 +0200
    11.2 +++ b/test/allocator_tests.c	Thu Sep 08 15:12:56 2016 +0200
    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 2015 Olaf Wintermann. All rights reserved.
    11.8 + * Copyright 2016 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/allocator_tests.h	Thu Sep 08 12:04:01 2016 +0200
    12.2 +++ b/test/allocator_tests.h	Thu Sep 08 15:12:56 2016 +0200
    12.3 @@ -1,7 +1,7 @@
    12.4  /*
    12.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    12.6   *
    12.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    12.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    12.9   *
   12.10   * Redistribution and use in source and binary forms, with or without
   12.11   * modification, are permitted provided that the following conditions are met:
    13.1 --- a/test/avl_tests.c	Thu Sep 08 12:04:01 2016 +0200
    13.2 +++ b/test/avl_tests.c	Thu Sep 08 15:12:56 2016 +0200
    13.3 @@ -1,7 +1,7 @@
    13.4  /*
    13.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    13.6   *
    13.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    13.8 + * Copyright 2016 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:
    14.1 --- a/test/avl_tests.h	Thu Sep 08 12:04:01 2016 +0200
    14.2 +++ b/test/avl_tests.h	Thu Sep 08 15:12:56 2016 +0200
    14.3 @@ -1,7 +1,7 @@
    14.4  /*
    14.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    14.6   *
    14.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    14.8 + * Copyright 2016 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:
    15.1 --- a/test/buffer_tests.c	Thu Sep 08 12:04:01 2016 +0200
    15.2 +++ b/test/buffer_tests.c	Thu Sep 08 15:12:56 2016 +0200
    15.3 @@ -1,7 +1,7 @@
    15.4  /*
    15.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    15.6   *
    15.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    15.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    15.9   *
   15.10   * Redistribution and use in source and binary forms, with or without
   15.11   * modification, are permitted provided that the following conditions are met:
    16.1 --- a/test/buffer_tests.h	Thu Sep 08 12:04:01 2016 +0200
    16.2 +++ b/test/buffer_tests.h	Thu Sep 08 15:12:56 2016 +0200
    16.3 @@ -1,7 +1,7 @@
    16.4  /*
    16.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    16.6   *
    16.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    16.8 + * Copyright 2016 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:
    17.1 --- a/test/list_tests.c	Thu Sep 08 12:04:01 2016 +0200
    17.2 +++ b/test/list_tests.c	Thu Sep 08 15:12:56 2016 +0200
    17.3 @@ -1,7 +1,7 @@
    17.4  /*
    17.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    17.6   *
    17.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    17.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    17.9   *
   17.10   * Redistribution and use in source and binary forms, with or without
   17.11   * modification, are permitted provided that the following conditions are met:
    18.1 --- a/test/list_tests.h	Thu Sep 08 12:04:01 2016 +0200
    18.2 +++ b/test/list_tests.h	Thu Sep 08 15:12:56 2016 +0200
    18.3 @@ -1,7 +1,7 @@
    18.4  /*
    18.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    18.6   *
    18.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    18.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    18.9   *
   18.10   * Redistribution and use in source and binary forms, with or without
   18.11   * modification, are permitted provided that the following conditions are met:
    19.1 --- a/test/logging_tests.c	Thu Sep 08 12:04:01 2016 +0200
    19.2 +++ b/test/logging_tests.c	Thu Sep 08 15:12:56 2016 +0200
    19.3 @@ -1,7 +1,7 @@
    19.4  /*
    19.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    19.6   *
    19.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    19.8 + * Copyright 2016 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:
    20.1 --- a/test/logging_tests.h	Thu Sep 08 12:04:01 2016 +0200
    20.2 +++ b/test/logging_tests.h	Thu Sep 08 15:12:56 2016 +0200
    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 2015 Olaf Wintermann. All rights reserved.
    20.8 + * Copyright 2016 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.c	Thu Sep 08 12:04:01 2016 +0200
    21.2 +++ b/test/main.c	Thu Sep 08 15:12:56 2016 +0200
    21.3 @@ -1,7 +1,7 @@
    21.4  /*
    21.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    21.6   *
    21.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    21.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    21.9   *
   21.10   * Redistribution and use in source and binary forms, with or without
   21.11   * modification, are permitted provided that the following conditions are met:
    22.1 --- a/test/main.h	Thu Sep 08 12:04:01 2016 +0200
    22.2 +++ b/test/main.h	Thu Sep 08 15:12:56 2016 +0200
    22.3 @@ -1,7 +1,7 @@
    22.4  /*
    22.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    22.6   *
    22.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    22.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    22.9   *
   22.10   * Redistribution and use in source and binary forms, with or without
   22.11   * modification, are permitted provided that the following conditions are met:
    23.1 --- a/test/map_tests.c	Thu Sep 08 12:04:01 2016 +0200
    23.2 +++ b/test/map_tests.c	Thu Sep 08 15:12:56 2016 +0200
    23.3 @@ -1,7 +1,7 @@
    23.4  /*
    23.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    23.6   *
    23.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    23.8 + * Copyright 2016 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:
    24.1 --- a/test/map_tests.h	Thu Sep 08 12:04:01 2016 +0200
    24.2 +++ b/test/map_tests.h	Thu Sep 08 15:12:56 2016 +0200
    24.3 @@ -1,7 +1,7 @@
    24.4  /*
    24.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    24.6   *
    24.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    24.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    24.9   *
   24.10   * Redistribution and use in source and binary forms, with or without
   24.11   * modification, are permitted provided that the following conditions are met:
    25.1 --- a/test/mpool_tests.c	Thu Sep 08 12:04:01 2016 +0200
    25.2 +++ b/test/mpool_tests.c	Thu Sep 08 15:12:56 2016 +0200
    25.3 @@ -1,7 +1,7 @@
    25.4  /*
    25.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    25.6   *
    25.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    25.8 + * Copyright 2016 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:
    26.1 --- a/test/mpool_tests.h	Thu Sep 08 12:04:01 2016 +0200
    26.2 +++ b/test/mpool_tests.h	Thu Sep 08 15:12:56 2016 +0200
    26.3 @@ -1,7 +1,7 @@
    26.4  /*
    26.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    26.6   *
    26.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    26.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    26.9   *
   26.10   * Redistribution and use in source and binary forms, with or without
   26.11   * modification, are permitted provided that the following conditions are met:
    27.1 --- a/test/prop_tests.c	Thu Sep 08 12:04:01 2016 +0200
    27.2 +++ b/test/prop_tests.c	Thu Sep 08 15:12:56 2016 +0200
    27.3 @@ -1,7 +1,7 @@
    27.4  /*
    27.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    27.6   *
    27.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    27.8 + * Copyright 2016 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:
    28.1 --- a/test/prop_tests.h	Thu Sep 08 12:04:01 2016 +0200
    28.2 +++ b/test/prop_tests.h	Thu Sep 08 15:12:56 2016 +0200
    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 2015 Olaf Wintermann. All rights reserved.
    28.8 + * Copyright 2016 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/test/stack_tests.c	Thu Sep 08 12:04:01 2016 +0200
    29.2 +++ b/test/stack_tests.c	Thu Sep 08 15:12:56 2016 +0200
    29.3 @@ -1,7 +1,7 @@
    29.4  /*
    29.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    29.6   *
    29.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    29.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    29.9   *
   29.10   * Redistribution and use in source and binary forms, with or without
   29.11   * modification, are permitted provided that the following conditions are met:
    30.1 --- a/test/stack_tests.h	Thu Sep 08 12:04:01 2016 +0200
    30.2 +++ b/test/stack_tests.h	Thu Sep 08 15:12:56 2016 +0200
    30.3 @@ -1,7 +1,7 @@
    30.4  /*
    30.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    30.6   *
    30.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    30.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    30.9   *
   30.10   * Redistribution and use in source and binary forms, with or without
   30.11   * modification, are permitted provided that the following conditions are met:
    31.1 --- a/test/string_tests.c	Thu Sep 08 12:04:01 2016 +0200
    31.2 +++ b/test/string_tests.c	Thu Sep 08 15:12:56 2016 +0200
    31.3 @@ -1,7 +1,7 @@
    31.4  /*
    31.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    31.6   *
    31.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    31.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    31.9   *
   31.10   * Redistribution and use in source and binary forms, with or without
   31.11   * modification, are permitted provided that the following conditions are met:
    32.1 --- a/test/string_tests.h	Thu Sep 08 12:04:01 2016 +0200
    32.2 +++ b/test/string_tests.h	Thu Sep 08 15:12:56 2016 +0200
    32.3 @@ -1,7 +1,7 @@
    32.4  /*
    32.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    32.6   *
    32.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    32.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    32.9   *
   32.10   * Redistribution and use in source and binary forms, with or without
   32.11   * modification, are permitted provided that the following conditions are met:
    33.1 --- a/test/utils_tests.c	Thu Sep 08 12:04:01 2016 +0200
    33.2 +++ b/test/utils_tests.c	Thu Sep 08 15:12:56 2016 +0200
    33.3 @@ -1,7 +1,7 @@
    33.4  /*
    33.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    33.6   *
    33.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    33.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    33.9   *
   33.10   * Redistribution and use in source and binary forms, with or without
   33.11   * modification, are permitted provided that the following conditions are met:
    34.1 --- a/test/utils_tests.h	Thu Sep 08 12:04:01 2016 +0200
    34.2 +++ b/test/utils_tests.h	Thu Sep 08 15:12:56 2016 +0200
    34.3 @@ -1,7 +1,7 @@
    34.4  /*
    34.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    34.6   *
    34.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    34.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    34.9   *
   34.10   * Redistribution and use in source and binary forms, with or without
   34.11   * modification, are permitted provided that the following conditions are met:
    35.1 --- a/ucx/Makefile	Thu Sep 08 12:04:01 2016 +0200
    35.2 +++ b/ucx/Makefile	Thu Sep 08 15:12:56 2016 +0200
    35.3 @@ -1,7 +1,7 @@
    35.4  #
    35.5  # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    35.6  #
    35.7 -# Copyright 2015 Olaf Wintermann. All rights reserved.
    35.8 +# Copyright 2016 Olaf Wintermann. All rights reserved.
    35.9  #
   35.10  # Redistribution and use in source and binary forms, with or without
   35.11  # modification, are permitted provided that the following conditions are met:
    36.1 --- a/ucx/allocator.c	Thu Sep 08 12:04:01 2016 +0200
    36.2 +++ b/ucx/allocator.c	Thu Sep 08 15:12:56 2016 +0200
    36.3 @@ -1,7 +1,7 @@
    36.4  /*
    36.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    36.6   *
    36.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    36.8 + * Copyright 2016 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:
    37.1 --- a/ucx/allocator.h	Thu Sep 08 12:04:01 2016 +0200
    37.2 +++ b/ucx/allocator.h	Thu Sep 08 15:12:56 2016 +0200
    37.3 @@ -1,7 +1,7 @@
    37.4  /*
    37.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    37.6   *
    37.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    37.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    37.9   *
   37.10   * Redistribution and use in source and binary forms, with or without
   37.11   * modification, are permitted provided that the following conditions are met:
   37.12 @@ -28,7 +28,7 @@
   37.13  /**
   37.14   * Allocator for custom memory management.
   37.15   * 
   37.16 - * An UCX allocator consists of a pointer to the memory area / pool and four
   37.17 + * A UCX allocator consists of a pointer to the memory area / pool and four
   37.18   * function pointers to memory management functions operating on this memory
   37.19   * area / pool. These functions shall behave equivalent to the standard libc
   37.20   * functions <code>malloc(), calloc(), realloc()</code> and <code>free()</code>.
   37.21 @@ -38,7 +38,7 @@
   37.22   * memory area / pool as first argument.
   37.23   * 
   37.24   * As the pointer to the memory area / pool can be arbitrarily chosen, any data
   37.25 - * can be provided to the memory management functions. An UcxMempool is just
   37.26 + * can be provided to the memory management functions. A UcxMempool is just
   37.27   * one example.
   37.28   * 
   37.29   * @see mempool.h
   37.30 @@ -116,7 +116,7 @@
   37.31   * management functions. Use this function to get a pointer to a globally
   37.32   * available allocator. You may also define an own UcxAllocator by assigning
   37.33   * #UCX_ALLOCATOR_DEFAULT to a variable and pass the address of this variable
   37.34 - * to any function that takes an UcxAllocator as argument. Note that using
   37.35 + * to any function that takes a UcxAllocator as argument. Note that using
   37.36   * this function is the recommended way of passing a default allocator, thus
   37.37   * it never runs out of scope.
   37.38   * 
    38.1 --- a/ucx/avl.c	Thu Sep 08 12:04:01 2016 +0200
    38.2 +++ b/ucx/avl.c	Thu Sep 08 15:12:56 2016 +0200
    38.3 @@ -1,7 +1,7 @@
    38.4  /*
    38.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    38.6   *
    38.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    38.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    38.9   *
   38.10   * Redistribution and use in source and binary forms, with or without
   38.11   * modification, are permitted provided that the following conditions are met:
    39.1 --- a/ucx/avl.h	Thu Sep 08 12:04:01 2016 +0200
    39.2 +++ b/ucx/avl.h	Thu Sep 08 15:12:56 2016 +0200
    39.3 @@ -1,7 +1,7 @@
    39.4  /*
    39.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    39.6   *
    39.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    39.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    39.9   *
   39.10   * Redistribution and use in source and binary forms, with or without
   39.11   * modification, are permitted provided that the following conditions are met:
   39.12 @@ -134,7 +134,7 @@
   39.13  UcxAVLTree *ucx_avl_new_a(cmp_func cmpfunc, UcxAllocator *allocator);
   39.14  
   39.15  /**
   39.16 - * Destroys an UcxAVLTree.
   39.17 + * Destroys a UcxAVLTree.
   39.18   * @param tree the tree to destroy
   39.19   */
   39.20  void ucx_avl_free(UcxAVLTree *tree);
    40.1 --- a/ucx/buffer.c	Thu Sep 08 12:04:01 2016 +0200
    40.2 +++ b/ucx/buffer.c	Thu Sep 08 15:12:56 2016 +0200
    40.3 @@ -1,7 +1,7 @@
    40.4  /*
    40.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    40.6   *
    40.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    40.8 + * Copyright 2016 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:
    41.1 --- a/ucx/buffer.h	Thu Sep 08 12:04:01 2016 +0200
    41.2 +++ b/ucx/buffer.h	Thu Sep 08 15:12:56 2016 +0200
    41.3 @@ -1,7 +1,7 @@
    41.4  /*
    41.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    41.6   *
    41.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    41.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    41.9   *
   41.10   * Redistribution and use in source and binary forms, with or without
   41.11   * modification, are permitted provided that the following conditions are met:
   41.12 @@ -197,7 +197,7 @@
   41.13  int ucx_buffer_extend(UcxBuffer *buffer, size_t additional_bytes);
   41.14  
   41.15  /**
   41.16 - * Writes data to an UcxBuffer.
   41.17 + * Writes data to a UcxBuffer.
   41.18   * 
   41.19   * The position of the buffer is increased by the number of bytes written.
   41.20   * 
   41.21 @@ -211,7 +211,7 @@
   41.22          UcxBuffer *buffer);
   41.23  
   41.24  /**
   41.25 - * Reads data from an UcxBuffer.
   41.26 + * Reads data from a UcxBuffer.
   41.27   * 
   41.28   * The position of the buffer is increased by the number of bytes read.
   41.29   * 
    42.1 --- a/ucx/list.c	Thu Sep 08 12:04:01 2016 +0200
    42.2 +++ b/ucx/list.c	Thu Sep 08 15:12:56 2016 +0200
    42.3 @@ -1,7 +1,7 @@
    42.4  /*
    42.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    42.6   *
    42.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    42.8 + * Copyright 2016 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:
    43.1 --- a/ucx/list.h	Thu Sep 08 12:04:01 2016 +0200
    43.2 +++ b/ucx/list.h	Thu Sep 08 15:12:56 2016 +0200
    43.3 @@ -1,7 +1,7 @@
    43.4  /*
    43.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    43.6   *
    43.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    43.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    43.9   *
   43.10   * Redistribution and use in source and binary forms, with or without
   43.11   * modification, are permitted provided that the following conditions are met:
   43.12 @@ -102,13 +102,12 @@
   43.13  UcxList *ucx_list_clone(UcxList *list, copy_func cpyfnc, void* data);
   43.14  
   43.15  /**
   43.16 - * Creates an element-wise copy of a list using an UcxAllocator.
   43.17 + * Creates an element-wise copy of a list using a UcxAllocator.
   43.18   * 
   43.19   * See ucx_list_clone() for details.
   43.20   * 
   43.21 - * Keep in mind, that you might want to pass the allocator as an (part of the)
   43.22 - * argument for the <code>data</code> parameter, if you want the copy_func() to
   43.23 - * make use of the allocator.
   43.24 + * You might want to pass the allocator via the <code>data</code> parameter,
   43.25 + * to access it within the copy function for making deep copies.
   43.26   * 
   43.27   * @param allocator the allocator to use
   43.28   * @param list the list to copy
   43.29 @@ -158,7 +157,7 @@
   43.30  void ucx_list_free(UcxList *list);
   43.31  
   43.32  /**
   43.33 - * Destroys the entire list using an UcxAllocator.
   43.34 + * Destroys the entire list using a UcxAllocator.
   43.35   * 
   43.36   * See ucx_list_free() for details.
   43.37   * 
   43.38 @@ -197,7 +196,7 @@
   43.39  UcxList *ucx_list_append(UcxList *list, void *data);
   43.40  
   43.41  /**
   43.42 - * Inserts an element at the end of the list using an UcxAllocator.
   43.43 + * Inserts an element at the end of the list using a UcxAllocator.
   43.44   * 
   43.45   * See ucx_list_append() for details.
   43.46   * 
   43.47 @@ -228,7 +227,7 @@
   43.48  UcxList *ucx_list_prepend(UcxList *list, void *data);
   43.49  
   43.50  /**
   43.51 - * Inserts an element at the beginning of the list using an UcxAllocator.
   43.52 + * Inserts an element at the beginning of the list using a UcxAllocator.
   43.53   * 
   43.54   * See ucx_list_prepend() for details.
   43.55   * 
   43.56 @@ -343,7 +342,7 @@
   43.57  int ucx_list_contains(UcxList *list, void *elem, cmp_func cmpfnc, void *data);
   43.58  
   43.59  /**
   43.60 - * Sorts an UcxList with natural merge sort.
   43.61 + * Sorts a UcxList with natural merge sort.
   43.62   * 
   43.63   * This function uses O(n) additional temporary memory for merge operations
   43.64   * that is automatically freed after each merge.
   43.65 @@ -373,7 +372,7 @@
   43.66  UcxList *ucx_list_remove(UcxList *list, UcxList *element);
   43.67  
   43.68  /**
   43.69 - * Removes an element from the list using an UcxAllocator.
   43.70 + * Removes an element from the list using a UcxAllocator.
   43.71   * 
   43.72   * See ucx_list_remove() for details.
   43.73   * 
    44.1 --- a/ucx/logging.c	Thu Sep 08 12:04:01 2016 +0200
    44.2 +++ b/ucx/logging.c	Thu Sep 08 15:12:56 2016 +0200
    44.3 @@ -1,7 +1,7 @@
    44.4  /*
    44.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    44.6   *
    44.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    44.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    44.9   *
   44.10   * Redistribution and use in source and binary forms, with or without
   44.11   * modification, are permitted provided that the following conditions are met:
    45.1 --- a/ucx/logging.h	Thu Sep 08 12:04:01 2016 +0200
    45.2 +++ b/ucx/logging.h	Thu Sep 08 15:12:56 2016 +0200
    45.3 @@ -1,7 +1,7 @@
    45.4  /*
    45.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    45.6   *
    45.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    45.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    45.9   *
   45.10   * Redistribution and use in source and binary forms, with or without
   45.11   * modification, are permitted provided that the following conditions are met:
    46.1 --- a/ucx/map.c	Thu Sep 08 12:04:01 2016 +0200
    46.2 +++ b/ucx/map.c	Thu Sep 08 15:12:56 2016 +0200
    46.3 @@ -1,7 +1,7 @@
    46.4  /*
    46.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    46.6   *
    46.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    46.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    46.9   *
   46.10   * Redistribution and use in source and binary forms, with or without
   46.11   * modification, are permitted provided that the following conditions are met:
    47.1 --- a/ucx/map.h	Thu Sep 08 12:04:01 2016 +0200
    47.2 +++ b/ucx/map.h	Thu Sep 08 15:12:56 2016 +0200
    47.3 @@ -1,7 +1,7 @@
    47.4  /*
    47.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    47.6   *
    47.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    47.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    47.9   *
   47.10   * Redistribution and use in source and binary forms, with or without
   47.11   * modification, are permitted provided that the following conditions are met:
   47.12 @@ -59,7 +59,7 @@
   47.13   * 
   47.14   * @param key the variable name for the key
   47.15   * @param value the variable name for the value
   47.16 - * @param iter an UcxMapIterator
   47.17 + * @param iter a UcxMapIterator
   47.18   * @see ucx_map_iterator()
   47.19   */
   47.20  #define UCX_MAP_FOREACH(key,value,iter) \
   47.21 @@ -68,13 +68,13 @@
   47.22  /** Type for the UCX map. @see UcxMap */
   47.23  typedef struct UcxMap          UcxMap;
   47.24  
   47.25 -/** Type for a key of an UcxMap. @see UcxKey */
   47.26 +/** Type for a key of a UcxMap. @see UcxKey */
   47.27  typedef struct UcxKey          UcxKey;
   47.28  
   47.29 -/** Type for an element of an UcxMap. @see UcxMapElement */
   47.30 +/** Type for an element of a UcxMap. @see UcxMapElement */
   47.31  typedef struct UcxMapElement   UcxMapElement;
   47.32  
   47.33 -/** Type for an iterator over an UcxMap. @see UcxMapIterator */
   47.34 +/** Type for an iterator over a UcxMap. @see UcxMapIterator */
   47.35  typedef struct UcxMapIterator  UcxMapIterator;
   47.36  
   47.37  /** Structure for the UCX map. */
   47.38 @@ -89,7 +89,7 @@
   47.39      size_t        count;
   47.40  };
   47.41  
   47.42 -/** Structure for a key of an UcxMap. */
   47.43 +/** Structure for a key of a UcxMap. */
   47.44  struct UcxKey {
   47.45      /** The key data. */
   47.46      void   *data;
   47.47 @@ -99,7 +99,7 @@
   47.48      int    hash;
   47.49  };
   47.50  
   47.51 -/** Structure for an element of an UcxMap. */
   47.52 +/** Structure for an element of a UcxMap. */
   47.53  struct UcxMapElement {
   47.54      /** The value data. */
   47.55      void          *data;
   47.56 @@ -111,7 +111,7 @@
   47.57      UcxKey        key;
   47.58  };
   47.59  
   47.60 -/** Structure for an iterator over an UcxMap. */
   47.61 +/** Structure for an iterator over a UcxMap. */
   47.62  struct UcxMapIterator {
   47.63      /** The map to iterate over. */
   47.64      UcxMap        *map;
   47.65 @@ -136,7 +136,7 @@
   47.66  UcxMap *ucx_map_new(size_t size);
   47.67  
   47.68  /**
   47.69 - * Creates a new hash map with the specified size using an UcxAllocator.
   47.70 + * Creates a new hash map with the specified size using a UcxAllocator.
   47.71   * @param allocator the allocator to use
   47.72   * @param size the size of the hash map
   47.73   * @return a pointer to the new hash map
   47.74 @@ -357,13 +357,13 @@
   47.75      ucx_map_remove(map, ucx_key((void*)&key, sizeof(key)))
   47.76  
   47.77  /**
   47.78 - * Creates an UcxKey based on the given data.
   47.79 + * Creates a UcxKey based on the given data.
   47.80   * 
   47.81   * This function implicitly computes the hash.
   47.82   * 
   47.83   * @param data the data for the key
   47.84   * @param len the length of the data
   47.85 - * @return an UcxKey with implicitly computed hash
   47.86 + * @return a UcxKey with implicitly computed hash
   47.87   * @see ucx_hash()
   47.88   */
   47.89  UcxKey ucx_key(void *data, size_t len);
   47.90 @@ -380,14 +380,14 @@
   47.91  /**
   47.92   * Creates an iterator for a map.
   47.93   * 
   47.94 - * <b>Note:</b> An UcxMapIterator iterates over all elements in all element
   47.95 + * <b>Note:</b> A UcxMapIterator iterates over all elements in all element
   47.96   * lists successively. Therefore the order highly depends on the key hashes and
   47.97   * may vary under different map sizes. So generally you may <b>NOT</b> rely on
   47.98   * the iteration order.
   47.99   * 
  47.100   * <b>Note:</b> The iterator is <b>NOT</b> initialized. You need to call
  47.101   * ucx_map_iter_next() at least once before accessing any information. However,
  47.102 - * it is not recommended to access the fields of an UcxMapIterator directly.
  47.103 + * it is not recommended to access the fields of a UcxMapIterator directly.
  47.104   * 
  47.105   * @param map the map to create the iterator for
  47.106   * @return an iterator initialized on the first element of the
    48.1 --- a/ucx/mempool.c	Thu Sep 08 12:04:01 2016 +0200
    48.2 +++ b/ucx/mempool.c	Thu Sep 08 15:12:56 2016 +0200
    48.3 @@ -1,7 +1,7 @@
    48.4  /*
    48.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    48.6   *
    48.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    48.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    48.9   *
   48.10   * Redistribution and use in source and binary forms, with or without
   48.11   * modification, are permitted provided that the following conditions are met:
    49.1 --- a/ucx/mempool.h	Thu Sep 08 12:04:01 2016 +0200
    49.2 +++ b/ucx/mempool.h	Thu Sep 08 15:12:56 2016 +0200
    49.3 @@ -1,7 +1,7 @@
    49.4  /*
    49.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    49.6   *
    49.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    49.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    49.9   *
   49.10   * Redistribution and use in source and binary forms, with or without
   49.11   * modification, are permitted provided that the following conditions are met:
   49.12 @@ -176,7 +176,7 @@
   49.13   * pool is destroyed.
   49.14   * 
   49.15   * The only requirement for the specified memory is, that it <b>MUST</b> be
   49.16 - * pooled memory by an UcxMempool or an element-compatible mempool. The pointer
   49.17 + * pooled memory by a UcxMempool or an element-compatible mempool. The pointer
   49.18   * to the destructor function is saved in a reserved area before the actual
   49.19   * memory.
   49.20   * 
    50.1 --- a/ucx/properties.c	Thu Sep 08 12:04:01 2016 +0200
    50.2 +++ b/ucx/properties.c	Thu Sep 08 15:12:56 2016 +0200
    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 2015 Olaf Wintermann. All rights reserved.
    50.8 + * Copyright 2016 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:
    51.1 --- a/ucx/properties.h	Thu Sep 08 12:04:01 2016 +0200
    51.2 +++ b/ucx/properties.h	Thu Sep 08 15:12:56 2016 +0200
    51.3 @@ -1,7 +1,7 @@
    51.4  /*
    51.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    51.6   *
    51.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    51.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    51.9   *
   51.10   * Redistribution and use in source and binary forms, with or without
   51.11   * modification, are permitted provided that the following conditions are met:
   51.12 @@ -127,7 +127,7 @@
   51.13  UcxProperties *ucx_properties_new();
   51.14  
   51.15  /**
   51.16 - * Destroys an UcxProperties object.
   51.17 + * Destroys a UcxProperties object.
   51.18   * @param prop the UcxProperties object to destroy
   51.19   */
   51.20  void ucx_properties_free(UcxProperties *prop);
   51.21 @@ -170,7 +170,7 @@
   51.22  int ucx_properties_next(UcxProperties *prop, sstr_t *name, sstr_t *value);
   51.23  
   51.24  /**
   51.25 - * Retrieves all available key/value-pairs and puts them into an UcxMap.
   51.26 + * Retrieves all available key/value-pairs and puts them into a UcxMap.
   51.27   * 
   51.28   * This is done by successive calls to ucx_properties_next() until no more
   51.29   * key/value-pairs can be retrieved. 
   51.30 @@ -183,7 +183,7 @@
   51.31  int ucx_properties2map(UcxProperties *prop, UcxMap *map);
   51.32  
   51.33  /**
   51.34 - * Loads a properties file to an UcxMap.
   51.35 + * Loads a properties file to a UcxMap.
   51.36   * 
   51.37   * This is a convenience function that reads data from an input
   51.38   * stream until the end of the stream is reached.
   51.39 @@ -198,7 +198,7 @@
   51.40  int ucx_properties_load(UcxMap *map, FILE *file);
   51.41  
   51.42  /**
   51.43 - * Stores an UcxMap to a file.
   51.44 + * Stores a UcxMap to a file.
   51.45   * 
   51.46   * The key/value-pairs are written by using the following format:
   51.47   * 
    52.1 --- a/ucx/stack.c	Thu Sep 08 12:04:01 2016 +0200
    52.2 +++ b/ucx/stack.c	Thu Sep 08 15:12:56 2016 +0200
    52.3 @@ -1,7 +1,7 @@
    52.4  /*
    52.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    52.6   *
    52.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    52.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    52.9   *
   52.10   * Redistribution and use in source and binary forms, with or without
   52.11   * modification, are permitted provided that the following conditions are met:
    53.1 --- a/ucx/stack.h	Thu Sep 08 12:04:01 2016 +0200
    53.2 +++ b/ucx/stack.h	Thu Sep 08 15:12:56 2016 +0200
    53.3 @@ -1,7 +1,7 @@
    53.4  /*
    53.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    53.6   *
    53.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    53.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    53.9   *
   53.10   * Redistribution and use in source and binary forms, with or without
   53.11   * modification, are permitted provided that the following conditions are met:
    54.1 --- a/ucx/string.c	Thu Sep 08 12:04:01 2016 +0200
    54.2 +++ b/ucx/string.c	Thu Sep 08 15:12:56 2016 +0200
    54.3 @@ -1,7 +1,7 @@
    54.4  /*
    54.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    54.6   *
    54.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    54.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    54.9   *
   54.10   * Redistribution and use in source and binary forms, with or without
   54.11   * modification, are permitted provided that the following conditions are met:
    55.1 --- a/ucx/string.h	Thu Sep 08 12:04:01 2016 +0200
    55.2 +++ b/ucx/string.h	Thu Sep 08 15:12:56 2016 +0200
    55.3 @@ -1,7 +1,7 @@
    55.4  /*
    55.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    55.6   *
    55.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    55.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    55.9   *
   55.10   * Redistribution and use in source and binary forms, with or without
   55.11   * modification, are permitted provided that the following conditions are met:
   55.12 @@ -137,7 +137,7 @@
   55.13  sstr_t sstrcat(size_t count, sstr_t s1, sstr_t s2, ...);
   55.14  
   55.15  /**
   55.16 - * Concatenates two or more strings using an UcxAllocator.
   55.17 + * Concatenates two or more strings using a UcxAllocator.
   55.18   * 
   55.19   * See sstrcat() for details.
   55.20   *
   55.21 @@ -277,7 +277,7 @@
   55.22  sstr_t* sstrsplit(sstr_t string, sstr_t delim, ssize_t *count);
   55.23  
   55.24  /**
   55.25 - * Performing sstrsplit() using an UcxAllocator.
   55.26 + * Performing sstrsplit() using a UcxAllocator.
   55.27   * 
   55.28   * <i>Read the description of sstrsplit() for details.</i>
   55.29   * 
   55.30 @@ -348,7 +348,7 @@
   55.31  sstr_t sstrdup(sstr_t string);
   55.32  
   55.33  /**
   55.34 - * Creates a duplicate of the specified string using an UcxAllocator.
   55.35 + * Creates a duplicate of the specified string using a UcxAllocator.
   55.36   * 
   55.37   * The new sstr_t will contain a copy allocated by the allocators
   55.38   * ucx_allocator_malloc function. So it is implementation depended, whether the
   55.39 @@ -358,7 +358,7 @@
   55.40   * The sstr_t.ptr of the return value will <i>always</i> be <code>NULL</code>-
   55.41   * terminated.
   55.42   * 
   55.43 - * @param allocator a valid instance of an UcxAllocator
   55.44 + * @param allocator a valid instance of a UcxAllocator
   55.45   * @param string the string to duplicate
   55.46   * @return a duplicate of the string
   55.47   * @see sstrdup()
    56.1 --- a/ucx/test.c	Thu Sep 08 12:04:01 2016 +0200
    56.2 +++ b/ucx/test.c	Thu Sep 08 15:12:56 2016 +0200
    56.3 @@ -1,7 +1,7 @@
    56.4  /*
    56.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    56.6   *
    56.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    56.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    56.9   *
   56.10   * Redistribution and use in source and binary forms, with or without
   56.11   * modification, are permitted provided that the following conditions are met:
    57.1 --- a/ucx/test.h	Thu Sep 08 12:04:01 2016 +0200
    57.2 +++ b/ucx/test.h	Thu Sep 08 15:12:56 2016 +0200
    57.3 @@ -1,7 +1,7 @@
    57.4  /*
    57.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    57.6   *
    57.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    57.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    57.9   *
   57.10   * Redistribution and use in source and binary forms, with or without
   57.11   * modification, are permitted provided that the following conditions are met:
   57.12 @@ -160,7 +160,7 @@
   57.13  /**
   57.14   * Macro for a #UcxTest function header.
   57.15   * 
   57.16 - * Use this macro to declare and/or define an #UcxTest function.
   57.17 + * Use this macro to declare and/or define a #UcxTest function.
   57.18   * 
   57.19   * @param name the name of the test function
   57.20   */
   57.21 @@ -196,7 +196,7 @@
   57.22  /**
   57.23   * Macro for a test subroutine function header.
   57.24   * 
   57.25 - * Use this to declare and/or define an subroutine that can be called by using
   57.26 + * Use this to declare and/or define a subroutine that can be called by using
   57.27   * UCX_TEST_CALL_SUBROUTINE().
   57.28   * 
   57.29   * @param name the name of the subroutine
    58.1 --- a/ucx/ucx.c	Thu Sep 08 12:04:01 2016 +0200
    58.2 +++ b/ucx/ucx.c	Thu Sep 08 15:12:56 2016 +0200
    58.3 @@ -9,7 +9,7 @@
    58.4   * 
    58.5   * <h2>LICENCE</h2>
    58.6   * 
    58.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    58.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    58.9   *
   58.10   * Redistribution and use in source and binary forms, with or without
   58.11   * modification, are permitted provided that the following conditions are met:
    59.1 --- a/ucx/ucx.h	Thu Sep 08 12:04:01 2016 +0200
    59.2 +++ b/ucx/ucx.h	Thu Sep 08 15:12:56 2016 +0200
    59.3 @@ -1,7 +1,7 @@
    59.4  /*
    59.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    59.6   *
    59.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    59.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    59.9   *
   59.10   * Redistribution and use in source and binary forms, with or without
   59.11   * modification, are permitted provided that the following conditions are met:
    60.1 --- a/ucx/utils.c	Thu Sep 08 12:04:01 2016 +0200
    60.2 +++ b/ucx/utils.c	Thu Sep 08 15:12:56 2016 +0200
    60.3 @@ -1,7 +1,7 @@
    60.4  /*
    60.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    60.6   *
    60.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    60.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    60.9   *
   60.10   * Redistribution and use in source and binary forms, with or without
   60.11   * modification, are permitted provided that the following conditions are met:
    61.1 --- a/ucx/utils.h	Thu Sep 08 12:04:01 2016 +0200
    61.2 +++ b/ucx/utils.h	Thu Sep 08 15:12:56 2016 +0200
    61.3 @@ -1,7 +1,7 @@
    61.4  /*
    61.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    61.6   *
    61.7 - * Copyright 2015 Olaf Wintermann. All rights reserved.
    61.8 + * Copyright 2016 Olaf Wintermann. All rights reserved.
    61.9   *
   61.10   * Redistribution and use in source and binary forms, with or without
   61.11   * modification, are permitted provided that the following conditions are met:
   61.12 @@ -262,7 +262,7 @@
   61.13      ucx_asprintf(ucx_default_allocator(), __VA_ARGS__)
   61.14  
   61.15  /**
   61.16 - * A <code>printf()</code> like function which writes the output to an
   61.17 + * A <code>printf()</code> like function which writes the output to a
   61.18   * UcxBuffer.
   61.19   * 
   61.20   * @param buffer the buffer the data is written to

mercurial