rsys

Basic data structures and low-level features
git clone git://git.meso-star.fr/rsys.git
Log | Files | Refs | README | LICENSE

commit 502598154ae31caf3ba2e2b560f691f99d341553
parent ac3196a56940fbef62a48f241472f90e507c0978
Author: vaplv <vaplv@free.fr>
Date:   Tue, 23 Jan 2018 10:01:41 +0100

Merge branch 'release_0.6.1' into develop

Diffstat:
MREADME.md | 6+++++-
Mcmake/CMakeLists.txt | 4++--
Msrc/algorithm.h | 2+-
Msrc/binary_heap.h | 2+-
Msrc/clock_time.c | 2+-
Msrc/clock_time.h | 2+-
Msrc/condition.h | 2+-
Msrc/cstr.c | 2+-
Msrc/cstr.h | 2+-
Msrc/cstr_to_list.h | 2+-
Msrc/double2.h | 2+-
Msrc/double22.h | 2+-
Msrc/double3.h | 2+-
Msrc/double33.h | 2+-
Msrc/double4.h | 2+-
Msrc/double44.h | 2+-
Msrc/dynamic_array.h | 2+-
Msrc/dynamic_array_char.h | 2+-
Msrc/dynamic_array_double.h | 2+-
Msrc/dynamic_array_float.h | 2+-
Msrc/dynamic_array_int.h | 2+-
Msrc/dynamic_array_size_t.h | 2+-
Msrc/dynamic_array_str.h | 2+-
Msrc/dynamic_array_u32.h | 2+-
Msrc/dynamic_array_u64.h | 2+-
Msrc/dynamic_array_uchar.h | 2+-
Msrc/dynamic_array_uint.h | 2+-
Msrc/float2.h | 2+-
Msrc/float22.h | 2+-
Msrc/float3.h | 2+-
Msrc/float33.h | 2+-
Msrc/float4.h | 2+-
Msrc/float44.h | 2+-
Msrc/free_list.h | 2+-
Msrc/hash.h | 2+-
Msrc/hash_table.h | 2+-
Msrc/image.c | 2+-
Msrc/image.h | 2+-
Msrc/io_c99.h | 2+-
Msrc/library.c | 2+-
Msrc/library.h | 2+-
Msrc/list.h | 2+-
Msrc/logger.c | 2+-
Msrc/logger.h | 2+-
Msrc/math.h | 2+-
Msrc/mem_allocator.c | 2+-
Msrc/mem_allocator.h | 2+-
Msrc/mem_lifo_allocator.c | 2+-
Msrc/mem_proxy_allocator.c | 2+-
Msrc/mutex.h | 2+-
Msrc/pthread/pthread_condition.c | 2+-
Msrc/pthread/pthread_mutex.c | 2+-
Msrc/quaternion.c | 2+-
Msrc/quaternion.h | 2+-
Msrc/real2.h | 2+-
Msrc/real22.h | 2+-
Msrc/real3.h | 2+-
Msrc/real33.h | 2+-
Msrc/real44.h | 2+-
Msrc/realX.h | 2+-
Msrc/realXY.h | 2+-
Msrc/realXY_begin.h | 2+-
Msrc/realXY_end.h | 2+-
Msrc/realX_begin.h | 2+-
Msrc/realX_end.h | 2+-
Msrc/ref_count.h | 2+-
Msrc/rsys.h | 2+-
Msrc/signal.h | 2+-
Msrc/str.c | 2+-
Msrc/str.h | 2+-
Msrc/stretchy_array.h | 2+-
Msrc/test_algorithm.c | 2+-
Msrc/test_atomic.c | 2+-
Msrc/test_big_buffer.c | 2+-
Msrc/test_binary_heap.c | 2+-
Msrc/test_condition.c | 2+-
Msrc/test_cstr.c | 2+-
Msrc/test_double2.c | 2+-
Msrc/test_double22.c | 2+-
Msrc/test_double3.c | 2+-
Msrc/test_double33.c | 2+-
Msrc/test_double4.c | 2+-
Msrc/test_double44.c | 2+-
Msrc/test_dynamic_array.c | 2+-
Msrc/test_float2.c | 2+-
Msrc/test_float22.c | 2+-
Msrc/test_float3.c | 2+-
Msrc/test_float33.c | 2+-
Msrc/test_float4.c | 2+-
Msrc/test_float44.c | 2+-
Msrc/test_free_list.c | 2+-
Msrc/test_func_name.c | 2+-
Msrc/test_hash_table.c | 2+-
Msrc/test_image.c | 2+-
Msrc/test_library.c | 2+-
Msrc/test_list.c | 2+-
Msrc/test_logger.c | 2+-
Msrc/test_math.c | 2+-
Msrc/test_mem_allocator.c | 2+-
Msrc/test_mutex.c | 2+-
Msrc/test_quaternion.c | 2+-
Msrc/test_real2.h | 2+-
Msrc/test_real22.h | 2+-
Msrc/test_real3.h | 2+-
Msrc/test_real33.h | 2+-
Msrc/test_real4.h | 2+-
Msrc/test_real44.h | 2+-
Msrc/test_ref.c | 2+-
Msrc/test_signal.c | 2+-
Msrc/test_str.c | 2+-
Msrc/test_time.c | 2+-
Msrc/win32/win32_condition.c | 2+-
Msrc/win32/win32_mutex.c | 2+-
113 files changed, 118 insertions(+), 114 deletions(-)

diff --git a/README.md b/README.md @@ -17,6 +17,10 @@ project can be now edited, built, tested and installed as any CMake project. ## Release notes +### Version 0.6.1 + +- Fix the detection of a 64-bits architecture on the CL compiler. + ### Version 0.6 - Remove the `big_buffer` container. Its implementation was awful and it was @@ -51,7 +55,7 @@ project can be now edited, built, tested and installed as any CMake project. ## License -RSys is Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr). It is a free +RSys is Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr). It is a free software released under the [OSI](https://opensource.org)-approved LGPL v3+ license. You are welcome to redistribute it under certain conditions; refer to the COPYING files for details. diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +# Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) # # This CMake script is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -35,7 +35,7 @@ include(rcmake) ################################################################################ set(VERSION_MAJOR 0) set(VERSION_MINOR 6) -set(VERSION_PATCH 0) +set(VERSION_PATCH 1) set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}) set(RSYS_FILES_SRC diff --git a/src/algorithm.h b/src/algorithm.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/binary_heap.h b/src/binary_heap.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/clock_time.c b/src/clock_time.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/clock_time.h b/src/clock_time.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/condition.h b/src/condition.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/cstr.c b/src/cstr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/cstr.h b/src/cstr.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/cstr_to_list.h b/src/cstr_to_list.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/double2.h b/src/double2.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/double22.h b/src/double22.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/double3.h b/src/double3.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/double33.h b/src/double33.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/double4.h b/src/double4.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/double44.h b/src/double44.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/dynamic_array.h b/src/dynamic_array.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/dynamic_array_char.h b/src/dynamic_array_char.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/dynamic_array_double.h b/src/dynamic_array_double.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/dynamic_array_float.h b/src/dynamic_array_float.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/dynamic_array_int.h b/src/dynamic_array_int.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/dynamic_array_size_t.h b/src/dynamic_array_size_t.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/dynamic_array_str.h b/src/dynamic_array_str.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/dynamic_array_u32.h b/src/dynamic_array_u32.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/dynamic_array_u64.h b/src/dynamic_array_u64.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/dynamic_array_uchar.h b/src/dynamic_array_uchar.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/dynamic_array_uint.h b/src/dynamic_array_uint.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/float2.h b/src/float2.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/float22.h b/src/float22.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/float3.h b/src/float3.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/float33.h b/src/float33.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/float4.h b/src/float4.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/float44.h b/src/float44.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/free_list.h b/src/free_list.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/hash.h b/src/hash.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/hash_table.h b/src/hash_table.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/image.c b/src/image.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/image.h b/src/image.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/io_c99.h b/src/io_c99.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/library.c b/src/library.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/library.h b/src/library.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/list.h b/src/list.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/logger.c b/src/logger.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/logger.h b/src/logger.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/math.h b/src/math.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/mem_allocator.c b/src/mem_allocator.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/mem_allocator.h b/src/mem_allocator.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/mem_lifo_allocator.c b/src/mem_lifo_allocator.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/mem_proxy_allocator.c b/src/mem_proxy_allocator.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/mutex.h b/src/mutex.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/pthread/pthread_condition.c b/src/pthread/pthread_condition.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/pthread/pthread_mutex.c b/src/pthread/pthread_mutex.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/quaternion.c b/src/quaternion.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/quaternion.h b/src/quaternion.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/real2.h b/src/real2.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/real22.h b/src/real22.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/real3.h b/src/real3.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/real33.h b/src/real33.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/real44.h b/src/real44.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/realX.h b/src/realX.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/realXY.h b/src/realXY.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/realXY_begin.h b/src/realXY_begin.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/realXY_end.h b/src/realXY_end.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/realX_begin.h b/src/realX_begin.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/realX_end.h b/src/realX_end.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/ref_count.h b/src/ref_count.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/rsys.h b/src/rsys.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/signal.h b/src/signal.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/str.c b/src/str.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/str.h b/src/str.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/stretchy_array.h b/src/stretchy_array.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_algorithm.c b/src/test_algorithm.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_atomic.c b/src/test_atomic.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_big_buffer.c b/src/test_big_buffer.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_binary_heap.c b/src/test_binary_heap.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_condition.c b/src/test_condition.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_cstr.c b/src/test_cstr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_double2.c b/src/test_double2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_double22.c b/src/test_double22.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_double3.c b/src/test_double3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_double33.c b/src/test_double33.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_double4.c b/src/test_double4.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_double44.c b/src/test_double44.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_dynamic_array.c b/src/test_dynamic_array.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_float2.c b/src/test_float2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_float22.c b/src/test_float22.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_float3.c b/src/test_float3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_float33.c b/src/test_float33.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_float4.c b/src/test_float4.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_float44.c b/src/test_float44.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_free_list.c b/src/test_free_list.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_func_name.c b/src/test_func_name.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_hash_table.c b/src/test_hash_table.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_image.c b/src/test_image.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_library.c b/src/test_library.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_list.c b/src/test_list.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_logger.c b/src/test_logger.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_math.c b/src/test_math.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_mem_allocator.c b/src/test_mem_allocator.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_mutex.c b/src/test_mutex.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_quaternion.c b/src/test_quaternion.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_real2.h b/src/test_real2.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_real22.h b/src/test_real22.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_real3.h b/src/test_real3.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_real33.h b/src/test_real33.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_real4.h b/src/test_real4.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_real44.h b/src/test_real44.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_ref.c b/src/test_ref.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_signal.c b/src/test_signal.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_str.c b/src/test_str.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/test_time.c b/src/test_time.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/win32/win32_condition.c b/src/win32/win32_condition.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published diff --git a/src/win32/win32_mutex.c b/src/win32/win32_mutex.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2013-2018 Vincent Forest (vaplv@free.fr) * * The RSys library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published