From 728742ab18c70b026d74af535774f9c20570205f Mon Sep 17 00:00:00 2001 From: cedric Date: Wed, 6 Aug 2008 18:15:24 +0000 Subject: [PATCH] License changes (BSD -> LGPL) git-svn-id: http://svn.enlightenment.org/svn/e/trunk/e17/proto/eina@35360 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/include/Eina.h | 18 ++++++++ src/include/eina_array.h | 18 ++++++++ src/include/eina_counter.h | 18 ++++++++ src/include/eina_error.h | 18 ++++++++ src/include/eina_f16p16.h | 18 ++++++++ src/include/eina_file.h | 18 ++++++++ src/include/eina_hash.h | 19 ++++++++ src/include/eina_inline_array.x | 18 ++++++++ src/include/eina_inlist.h | 18 ++++++++ src/include/eina_lalloc.h | 18 ++++++++ src/include/eina_list.h | 18 ++++++++ src/include/eina_magic.h | 18 ++++++++ src/include/eina_mempool.h | 18 ++++++++ src/include/eina_module.h | 18 ++++++++ src/include/eina_private.h | 18 ++++++++ src/include/eina_rectangle.h | 18 ++++++++ src/include/eina_stringshare.h | 50 ++++++++++++++++++++ src/include/eina_types.h | 18 ++++++++ src/lib/eina_array.c | 17 +++++++ src/lib/eina_counter.c | 18 ++++++++ src/lib/eina_error.c | 18 ++++++++ src/lib/eina_file.c | 18 ++++++++ src/lib/eina_hash.c | 19 ++++++++ src/lib/eina_inlist.c | 20 +++++++- src/lib/eina_lalloc.c | 18 ++++++++ src/lib/eina_list.c | 54 ++++++++++++++++++++++ src/lib/eina_magic.c | 18 ++++++++ src/lib/eina_main.c | 18 ++++++++ src/lib/eina_mempool.c | 18 ++++++++ src/lib/eina_module.c | 18 ++++++++ src/lib/eina_stringshare.c | 50 ++++++++++++++++++++ src/modules/mp/chained_pool/eina_chained_mempool.c | 17 +++++++ src/modules/mp/ememoa_fixed/eina_ememoa_fixed.c | 17 +++++++ src/tests/eina_bench.c | 18 ++++++++ src/tests/eina_bench.h | 18 ++++++++ src/tests/eina_bench_hash.c | 18 ++++++++ src/tests/eina_suite.c | 18 ++++++++ src/tests/eina_suite.h | 18 ++++++++ src/tests/eina_test_array.c | 18 ++++++++ src/tests/eina_test_counter.c | 18 ++++++++ src/tests/eina_test_error.c | 18 ++++++++ src/tests/eina_test_hash.c | 18 ++++++++ src/tests/eina_test_inlist.c | 18 ++++++++ src/tests/eina_test_lalloc.c | 18 ++++++++ src/tests/eina_test_magic.c | 18 ++++++++ src/tests/eina_test_main.c | 18 ++++++++ src/tests/eina_test_stringshare.c | 18 ++++++++ 47 files changed, 946 insertions(+), 1 deletion(-) diff --git a/src/include/Eina.h b/src/include/Eina.h index d17a2e1..1185b73 100644 --- a/src/include/Eina.h +++ b/src/include/Eina.h @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2008 Jorge Luis Zapata Muga, Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #ifndef EINA_H_ #define EINA_H_ diff --git a/src/include/eina_array.h b/src/include/eina_array.h index baef8a8..81c641c 100644 --- a/src/include/eina_array.h +++ b/src/include/eina_array.h @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2008 Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #ifndef EINA_ARRAY_H_ #define EINA_ARRAY_H_ diff --git a/src/include/eina_counter.h b/src/include/eina_counter.h index 15e8ab2..6a002e3 100644 --- a/src/include/eina_counter.h +++ b/src/include/eina_counter.h @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2008 Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #ifndef EINA_PERFORMANCE_H_ #define EINA_PERFORMANCE_H_ diff --git a/src/include/eina_error.h b/src/include/eina_error.h index c631373..534a62b 100644 --- a/src/include/eina_error.h +++ b/src/include/eina_error.h @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2007-2008 Jorge Luis Zapata Muga, Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #ifndef EINA_ERROR_H_ #define EINA_ERROR_H_ diff --git a/src/include/eina_f16p16.h b/src/include/eina_f16p16.h index b40907c..2f1d002 100644 --- a/src/include/eina_f16p16.h +++ b/src/include/eina_f16p16.h @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2007-2008 Jorge Luis Zapata Muga + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #ifndef EINA_F16P16_H_ #define EINA_F16P16_H_ diff --git a/src/include/eina_file.h b/src/include/eina_file.h index a2e5cbe..8b9534d 100644 --- a/src/include/eina_file.h +++ b/src/include/eina_file.h @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2007-2008 Jorge Luis Zapata Muga + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #ifndef EINA_FILE_H_ #define EINA_FILE_H_ diff --git a/src/include/eina_hash.h b/src/include/eina_hash.h index 592a9fa..cabadc2 100644 --- a/src/include/eina_hash.h +++ b/src/include/eina_hash.h @@ -1,3 +1,22 @@ +/* EINA - EFL data type library + * Copyright (C) 2002-2008 Carsten Haitzler, Gustavo Sverzut Barbieri, + * Vincent Torri, Jorge Luis Zapata Muga, Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #ifndef EINA_HASH_H_ #define EINA_HASH_H_ diff --git a/src/include/eina_inline_array.x b/src/include/eina_inline_array.x index 1dbc145..3c1953d 100644 --- a/src/include/eina_inline_array.x +++ b/src/include/eina_inline_array.x @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2008 Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #ifndef EINA_INLINE_ARRAY_X_ #define EINA_INLINE_ARRAY_X_ diff --git a/src/include/eina_inlist.h b/src/include/eina_inlist.h index db35913..60200de 100644 --- a/src/include/eina_inlist.h +++ b/src/include/eina_inlist.h @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2002-2008 Carsten Haitzler, Vincent Torri + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #ifndef EINA_INLIST_H_ #define EINA_INLIST_H_ diff --git a/src/include/eina_lalloc.h b/src/include/eina_lalloc.h index 771deef..91bdcaa 100644 --- a/src/include/eina_lalloc.h +++ b/src/include/eina_lalloc.h @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2007-2008 Jorge Luis Zapata Muga + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #ifndef EINA_LALLOC_H_ #define EINA_LALLOC_H_ diff --git a/src/include/eina_list.h b/src/include/eina_list.h index 4109b00..186fcee 100644 --- a/src/include/eina_list.h +++ b/src/include/eina_list.h @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2002-2008 Carsten Haitzler, Vincent Torri, Jorge Luis Zapata Muga + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #ifndef EINA_LIST_H_ #define EINA_LIST_H_ diff --git a/src/include/eina_magic.h b/src/include/eina_magic.h index e9cd39f..9590256 100644 --- a/src/include/eina_magic.h +++ b/src/include/eina_magic.h @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2008 Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #ifndef EINA_MAGIC_H_ #define EINA_MAGIC_H_ diff --git a/src/include/eina_mempool.h b/src/include/eina_mempool.h index 794374e..69d29cd 100644 --- a/src/include/eina_mempool.h +++ b/src/include/eina_mempool.h @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2007-2008 Jorge Luis Zapata Muga + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #ifndef EINA_MEMPOOL_H_ #define EINA_MEMPOOL_H_ diff --git a/src/include/eina_module.h b/src/include/eina_module.h index abe8300..c7ef23d 100644 --- a/src/include/eina_module.h +++ b/src/include/eina_module.h @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2007-2008 Jorge Luis Zapata Muga + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #ifndef EINA_MODULE_H_ #define EINA_MODULE_H_ diff --git a/src/include/eina_private.h b/src/include/eina_private.h index 5f521ae..2f73e78 100644 --- a/src/include/eina_private.h +++ b/src/include/eina_private.h @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2008 Carsten Haitzler, Vincent Torri, Jorge Luis Zapata Muga + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #ifndef EINA_PRIVATE_H_ #define EINA_PRIVATE_H_ diff --git a/src/include/eina_rectangle.h b/src/include/eina_rectangle.h index 839e871..3373e77 100644 --- a/src/include/eina_rectangle.h +++ b/src/include/eina_rectangle.h @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2007-2008 Jorge Luis Zapata Muga + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #ifndef EINA_RECTANGLE_H_ #define EINA_RECTANGLE_H_ diff --git a/src/include/eina_stringshare.h b/src/include/eina_stringshare.h index 5333cd8..d69f5ea 100644 --- a/src/include/eina_stringshare.h +++ b/src/include/eina_stringshare.h @@ -1,3 +1,53 @@ +/* EINA - EFL data type library + * Copyright (C) 2002-2008 Carsten Haitzler, Jorge Luis Zapata Muga, Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + * + * This file incorporates work covered by the following copyright and + * permission notice: + * + * Copyright (C) 2008 Peter Wehrfritz + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to + * deal in the Software without restriction, including without limitation the + * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + * sell copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies of the Software and its Copyright notices. In addition publicly + * documented acknowledgment must be given that this software has been used if no + * source code of this software is made available publicly. This includes + * acknowledgments in either Copyright notices, Manuals, Publicity and Marketing + * documents or any documentation provided with any product containing this + * software. This License does not apply to any software that links to the + * libraries provided by this software (statically or dynamically), but only to + * the software provided. + * + * Please see the OLD-COPYING.PLAIN for a plain-english explanation of this notice + * and it's intent. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ + #ifndef EINA_STRINGSHARE_H_ #define EINA_STRINGSHARE_H_ diff --git a/src/include/eina_types.h b/src/include/eina_types.h index 4e76dca..28c4577 100644 --- a/src/include/eina_types.h +++ b/src/include/eina_types.h @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2007-2008 Carsten Haitzler, Vincent Torri, Jorge Luis Zapata Muga + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #ifndef EINA_TYPES_H_ #define EINA_TYPES_H_ diff --git a/src/lib/eina_array.c b/src/lib/eina_array.c index fd835e1..324fc1b 100644 --- a/src/lib/eina_array.c +++ b/src/lib/eina_array.c @@ -1,6 +1,23 @@ /* * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 */ +/* EINA - EFL data type library + * Copyright (C) 2008 Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ #ifdef HAVE_CONFIG_H # include "config.h" diff --git a/src/lib/eina_counter.c b/src/lib/eina_counter.c index 8fc17f4..81c1a00 100644 --- a/src/lib/eina_counter.c +++ b/src/lib/eina_counter.c @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2008 Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #include #include "eina_counter.h" diff --git a/src/lib/eina_error.c b/src/lib/eina_error.c index 4c33331..e375f56 100644 --- a/src/lib/eina_error.c +++ b/src/lib/eina_error.c @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2007-2008 Jorge Luis Zapata Muga, Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #include "eina_error.h" #include "eina_list.h" #include "eina_private.h" diff --git a/src/lib/eina_file.c b/src/lib/eina_file.c index dab979f..f45d12f 100644 --- a/src/lib/eina_file.c +++ b/src/lib/eina_file.c @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2007-2008 Jorge Luis Zapata Muga + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #define _GNU_SOURCE #include diff --git a/src/lib/eina_hash.c b/src/lib/eina_hash.c index 8ddf74b..bc532d3 100644 --- a/src/lib/eina_hash.c +++ b/src/lib/eina_hash.c @@ -1,3 +1,22 @@ +/* EINA - EFL data type library + * Copyright (C) 2002-2008 Carsten Haitzler, Gustavo Sverzut Barbieri, + * Vincent Torri, Jorge Luis Zapata Muga, Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #ifdef HAVE_CONFIG_H # include "config.h" #endif diff --git a/src/lib/eina_inlist.c b/src/lib/eina_inlist.c index 8c6d4b8..03bc30d 100644 --- a/src/lib/eina_inlist.c +++ b/src/lib/eina_inlist.c @@ -1,7 +1,25 @@ +/* EINA - EFL data type library + * Copyright (C) 2002-2008 Carsten Haitzler, Vincent Torri + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #include "eina_inlist.h" #include "eina_private.h" -/* TODO please, refactor this :) */ +/* FIXME: TODO please, refactor this :) */ /*============================================================================* * API * diff --git a/src/lib/eina_lalloc.c b/src/lib/eina_lalloc.c index a6297e7..4675e1d 100644 --- a/src/lib/eina_lalloc.c +++ b/src/lib/eina_lalloc.c @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2007-2008 Jorge Luis Zapata Muga + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #include "eina_lalloc.h" #include "eina_private.h" diff --git a/src/lib/eina_list.c b/src/lib/eina_list.c index 0304862..c55a485 100644 --- a/src/lib/eina_list.c +++ b/src/lib/eina_list.c @@ -1,3 +1,57 @@ +/* EINA - EFL data type library + * Copyright (C) 2002-2008 Carsten Haitzler, Gustavo Sverzut Barbieri, Tilman Sauerbeck, + * Vincent Torri, Cedric Bail, Jorge Luis Zapata Muga, + * Corey Donohoe + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + * + * This file incorporates work covered by the following copyright and + * permission notice: + * + * Copyright (C) 2004 ncn + * Copyright (C) 2006 Sebastian Dransfeld + * Copyright (C) 2007 Christopher Michael + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to + * deal in the Software without restriction, including without limitation the + * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + * sell copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + + * The above copyright notice and this permission notice shall be included in + * all copies of the Software and its Copyright notices. In addition publicly + * documented acknowledgment must be given that this software has been used if no + * source code of this software is made available publicly. This includes + * acknowledgments in either Copyright notices, Manuals, Publicity and Marketing + * documents or any documentation provided with any product containing this + * software. This License does not apply to any software that links to the + * libraries provided by this software (statically or dynamically), but only to + * the software provided. + + * Please see the OLD-COPYING.PLAIN for a plain-english explanation of this notice + * and it's intent. + + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ + #include "eina_list.h" #include "eina_private.h" diff --git a/src/lib/eina_magic.c b/src/lib/eina_magic.c index f4843a8..933a0a2 100644 --- a/src/lib/eina_magic.c +++ b/src/lib/eina_magic.c @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2008 Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #include "eina_array.h" #include "eina_error.h" diff --git a/src/lib/eina_main.c b/src/lib/eina_main.c index d0835be..2ada6e9 100644 --- a/src/lib/eina_main.c +++ b/src/lib/eina_main.c @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2008 Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #include "Eina.h" EAPI int diff --git a/src/lib/eina_mempool.c b/src/lib/eina_mempool.c index 5eed0a0..86735ae 100644 --- a/src/lib/eina_mempool.c +++ b/src/lib/eina_mempool.c @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2007-2008 Jorge Luis Zapata Muga + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #include "eina_mempool.h" #include "eina_list.h" #include "eina_module.h" diff --git a/src/lib/eina_module.c b/src/lib/eina_module.c index 1692983..bba83bd 100644 --- a/src/lib/eina_module.c +++ b/src/lib/eina_module.c @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2007-2008 Jorge Luis Zapata Muga + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #include "eina_module.h" #include "eina_file.h" #include "eina_private.h" diff --git a/src/lib/eina_stringshare.c b/src/lib/eina_stringshare.c index d7c6955..39645ed 100644 --- a/src/lib/eina_stringshare.c +++ b/src/lib/eina_stringshare.c @@ -1,6 +1,55 @@ /* * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 */ +/* EINA - EFL data type library + * Copyright (C) 2002-2008 Carsten Haitzler, Jorge Luis Zapata Muga, Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + * + * This file incorporates work covered by the following copyright and + * permission notice: + * + * Copyright (C) 2008 Peter Wehrfritz + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to + * deal in the Software without restriction, including without limitation the + * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + * sell copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies of the Software and its Copyright notices. In addition publicly + * documented acknowledgment must be given that this software has been used if no + * source code of this software is made available publicly. This includes + * acknowledgments in either Copyright notices, Manuals, Publicity and Marketing + * documents or any documentation provided with any product containing this + * software. This License does not apply to any software that links to the + * libraries provided by this software (statically or dynamically), but only to + * the software provided. + * + * Please see the OLD-COPYING.PLAIN for a plain-english explanation of this notice + * and it's intent. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ #ifdef HAVE_CONFIG_H # include "config.h" @@ -11,6 +60,7 @@ #include #include "eina_stringshare.h" +#include "eina_hash.h" #include "eina_error.h" #include "eina_private.h" diff --git a/src/modules/mp/chained_pool/eina_chained_mempool.c b/src/modules/mp/chained_pool/eina_chained_mempool.c index 9fa874b..0a5fd10 100644 --- a/src/modules/mp/chained_pool/eina_chained_mempool.c +++ b/src/modules/mp/chained_pool/eina_chained_mempool.c @@ -1,6 +1,23 @@ /* * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 */ +/* EINA - EFL data type library + * Copyright (C) 2008 Cedric BAIL + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ #ifdef HAVE_CONFIG_H # include "config.h" diff --git a/src/modules/mp/ememoa_fixed/eina_ememoa_fixed.c b/src/modules/mp/ememoa_fixed/eina_ememoa_fixed.c index a0d76fd..c3beee1 100644 --- a/src/modules/mp/ememoa_fixed/eina_ememoa_fixed.c +++ b/src/modules/mp/ememoa_fixed/eina_ememoa_fixed.c @@ -1,6 +1,23 @@ /* * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 */ +/* EINA - EFL data type library + * Copyright (C) 2008 Cedric BAIL + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ #ifdef HAVE_CONFIG_H # include "config.h" diff --git a/src/tests/eina_bench.c b/src/tests/eina_bench.c index b597acb..2eb2b86 100644 --- a/src/tests/eina_bench.c +++ b/src/tests/eina_bench.c @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2008 Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #include #include #include diff --git a/src/tests/eina_bench.h b/src/tests/eina_bench.h index 0bac209..5bcc7a0 100644 --- a/src/tests/eina_bench.h +++ b/src/tests/eina_bench.h @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2008 Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #ifndef EINA_BENCH_H_ #define EINA_BENCH_H_ diff --git a/src/tests/eina_bench_hash.c b/src/tests/eina_bench_hash.c index 2dce462..816aaa6 100644 --- a/src/tests/eina_bench_hash.c +++ b/src/tests/eina_bench_hash.c @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2008 Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #include #include #include diff --git a/src/tests/eina_suite.c b/src/tests/eina_suite.c index 854d100..e03c1fb 100644 --- a/src/tests/eina_suite.c +++ b/src/tests/eina_suite.c @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2008 Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #include "eina_suite.h" typedef struct _Eina_Test_Case Eina_Test_Case; diff --git a/src/tests/eina_suite.h b/src/tests/eina_suite.h index af3d716..58eb202 100644 --- a/src/tests/eina_suite.h +++ b/src/tests/eina_suite.h @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2008 Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #ifndef EINA_SUITE_H_ #define EINA_SUITE_H_ diff --git a/src/tests/eina_test_array.c b/src/tests/eina_test_array.c index 44850aa..2e77311 100644 --- a/src/tests/eina_test_array.c +++ b/src/tests/eina_test_array.c @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2008 Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #include #include "eina_suite.h" diff --git a/src/tests/eina_test_counter.c b/src/tests/eina_test_counter.c index b4a0452..aa6739a 100644 --- a/src/tests/eina_test_counter.c +++ b/src/tests/eina_test_counter.c @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2008 Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #include #include "eina_counter.h" diff --git a/src/tests/eina_test_error.c b/src/tests/eina_test_error.c index 7302455..90a303c 100644 --- a/src/tests/eina_test_error.c +++ b/src/tests/eina_test_error.c @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2008 Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #include #include "eina_suite.h" diff --git a/src/tests/eina_test_hash.c b/src/tests/eina_test_hash.c index 77919b8..ca141f5 100644 --- a/src/tests/eina_test_hash.c +++ b/src/tests/eina_test_hash.c @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2008 Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #include #include diff --git a/src/tests/eina_test_inlist.c b/src/tests/eina_test_inlist.c index a2f8849..e85156b 100644 --- a/src/tests/eina_test_inlist.c +++ b/src/tests/eina_test_inlist.c @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2008 Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #include #include "eina_suite.h" diff --git a/src/tests/eina_test_lalloc.c b/src/tests/eina_test_lalloc.c index acc35b7..6da11fb 100644 --- a/src/tests/eina_test_lalloc.c +++ b/src/tests/eina_test_lalloc.c @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2008 Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #include #include diff --git a/src/tests/eina_test_magic.c b/src/tests/eina_test_magic.c index 601ddfa..e576869 100644 --- a/src/tests/eina_test_magic.c +++ b/src/tests/eina_test_magic.c @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2008 Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #include #include "eina_suite.h" diff --git a/src/tests/eina_test_main.c b/src/tests/eina_test_main.c index 00e1121..b379c55 100644 --- a/src/tests/eina_test_main.c +++ b/src/tests/eina_test_main.c @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2008 Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #include "Eina.h" #include "eina_suite.h" diff --git a/src/tests/eina_test_stringshare.c b/src/tests/eina_test_stringshare.c index 33ebecb..2a03735 100644 --- a/src/tests/eina_test_stringshare.c +++ b/src/tests/eina_test_stringshare.c @@ -1,3 +1,21 @@ +/* EINA - EFL data type library + * Copyright (C) 2008 Cedric Bail + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; + * if not, see . + */ + #include #include #include -- 2.7.4