diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-05-25 00:45:23 -0300 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-05-25 00:45:23 -0300 |
commit | ec0b4dbccf1fe41cfc14031a14d6b17e13770197 (patch) | |
tree | 40fad9bb4fba4d08837ef85082b2dc74f3c5ccf7 | |
parent | 721dc436a0f88d28809918f11f1896a49cb997e4 (diff) | |
download | blogc-ec0b4dbccf1fe41cfc14031a14d6b17e13770197.tar.gz blogc-ec0b4dbccf1fe41cfc14031a14d6b17e13770197.tar.bz2 blogc-ec0b4dbccf1fe41cfc14031a14d6b17e13770197.zip |
fixed copyright
-rw-r--r-- | src/content-parser.c | 2 | ||||
-rw-r--r-- | src/content-parser.h | 2 | ||||
-rw-r--r-- | src/error.c | 2 | ||||
-rw-r--r-- | src/error.h | 2 | ||||
-rw-r--r-- | src/file.c | 2 | ||||
-rw-r--r-- | src/file.h | 2 | ||||
-rw-r--r-- | src/loader.c | 2 | ||||
-rw-r--r-- | src/loader.h | 2 | ||||
-rw-r--r-- | src/main.c | 2 | ||||
-rw-r--r-- | src/renderer.c | 2 | ||||
-rw-r--r-- | src/renderer.h | 2 | ||||
-rw-r--r-- | src/source-parser.c | 2 | ||||
-rw-r--r-- | src/source-parser.h | 2 | ||||
-rw-r--r-- | src/template-parser.c | 2 | ||||
-rw-r--r-- | src/template-parser.h | 2 | ||||
-rw-r--r-- | src/utils/mem.c | 2 | ||||
-rw-r--r-- | src/utils/slist.c | 2 | ||||
-rw-r--r-- | src/utils/strings.c | 2 | ||||
-rw-r--r-- | src/utils/trie.c | 2 | ||||
-rw-r--r-- | src/utils/utils.h | 2 | ||||
-rw-r--r-- | tests/check_content_parser.c | 2 | ||||
-rw-r--r-- | tests/check_error.c | 2 | ||||
-rw-r--r-- | tests/check_loader.c | 2 | ||||
-rw-r--r-- | tests/check_renderer.c | 2 | ||||
-rw-r--r-- | tests/check_source_parser.c | 2 | ||||
-rw-r--r-- | tests/check_template_parser.c | 2 | ||||
-rw-r--r-- | tests/check_utils.c | 2 |
27 files changed, 27 insertions, 27 deletions
diff --git a/src/content-parser.c b/src/content-parser.c index f412810..7781c92 100644 --- a/src/content-parser.c +++ b/src/content-parser.c @@ -3,7 +3,7 @@ * Copyright (C) 2015 Rafael G. Martins <rafael@rafaelmartins.eng.br> * * This program can be distributed under the terms of the BSD License. - * See the file COPYING. + * See the file LICENSE. */ #ifdef HAVE_CONFIG_H diff --git a/src/content-parser.h b/src/content-parser.h index 5c9ae4b..d0a0732 100644 --- a/src/content-parser.h +++ b/src/content-parser.h @@ -3,7 +3,7 @@ * Copyright (C) 2015 Rafael G. Martins <rafael@rafaelmartins.eng.br> * * This program can be distributed under the terms of the BSD License. - * See the file COPYING. + * See the file LICENSE. */ #ifndef _CONTENT_PARSER_H diff --git a/src/error.c b/src/error.c index 3850304..b4a0138 100644 --- a/src/error.c +++ b/src/error.c @@ -3,7 +3,7 @@ * Copyright (C) 2015 Rafael G. Martins <rafael@rafaelmartins.eng.br> * * This program can be distributed under the terms of the BSD License. - * See the file COPYING. + * See the file LICENSE. */ #ifdef HAVE_CONFIG_H diff --git a/src/error.h b/src/error.h index 98aeeb9..fbd3ba1 100644 --- a/src/error.h +++ b/src/error.h @@ -3,7 +3,7 @@ * Copyright (C) 2015 Rafael G. Martins <rafael@rafaelmartins.eng.br> * * This program can be distributed under the terms of the BSD License. - * See the file COPYING. + * See the file LICENSE. */ #ifndef _ERROR_H @@ -3,7 +3,7 @@ * Copyright (C) 2015 Rafael G. Martins <rafael@rafaelmartins.eng.br> * * This program can be distributed under the terms of the BSD License. - * See the file COPYING. + * See the file LICENSE. */ #ifdef HAVE_CONFIG_H @@ -3,7 +3,7 @@ * Copyright (C) 2015 Rafael G. Martins <rafael@rafaelmartins.eng.br> * * This program can be distributed under the terms of the BSD License. - * See the file COPYING. + * See the file LICENSE. */ #ifndef _FILE_H diff --git a/src/loader.c b/src/loader.c index bcab0d6..5a521e3 100644 --- a/src/loader.c +++ b/src/loader.c @@ -3,7 +3,7 @@ * Copyright (C) 2015 Rafael G. Martins <rafael@rafaelmartins.eng.br> * * This program can be distributed under the terms of the BSD License. - * See the file COPYING. + * See the file LICENSE. */ #ifdef HAVE_CONFIG_H diff --git a/src/loader.h b/src/loader.h index 683465b..610aa42 100644 --- a/src/loader.h +++ b/src/loader.h @@ -3,7 +3,7 @@ * Copyright (C) 2015 Rafael G. Martins <rafael@rafaelmartins.eng.br> * * This program can be distributed under the terms of the BSD License. - * See the file COPYING. + * See the file LICENSE. */ #ifndef _LOADER_H @@ -3,7 +3,7 @@ * Copyright (C) 2015 Rafael G. Martins <rafael@rafaelmartins.eng.br> * * This program can be distributed under the terms of the BSD License. - * See the file COPYING. + * See the file LICENSE. */ #ifdef HAVE_CONFIG_H diff --git a/src/renderer.c b/src/renderer.c index 314fe04..bf8b8cc 100644 --- a/src/renderer.c +++ b/src/renderer.c @@ -3,7 +3,7 @@ * Copyright (C) 2015 Rafael G. Martins <rafael@rafaelmartins.eng.br> * * This program can be distributed under the terms of the BSD License. - * See the file COPYING. + * See the file LICENSE. */ #ifdef HAVE_CONFIG_H diff --git a/src/renderer.h b/src/renderer.h index b6bbfed..ebe0aee 100644 --- a/src/renderer.h +++ b/src/renderer.h @@ -3,7 +3,7 @@ * Copyright (C) 2015 Rafael G. Martins <rafael@rafaelmartins.eng.br> * * This program can be distributed under the terms of the BSD License. - * See the file COPYING. + * See the file LICENSE. */ #ifndef _RENDERER_H diff --git a/src/source-parser.c b/src/source-parser.c index b556a3c..d7dddc7 100644 --- a/src/source-parser.c +++ b/src/source-parser.c @@ -3,7 +3,7 @@ * Copyright (C) 2015 Rafael G. Martins <rafael@rafaelmartins.eng.br> * * This program can be distributed under the terms of the BSD License. - * See the file COPYING. + * See the file LICENSE. */ #ifdef HAVE_CONFIG_H diff --git a/src/source-parser.h b/src/source-parser.h index f89a390..d92b1ce 100644 --- a/src/source-parser.h +++ b/src/source-parser.h @@ -3,7 +3,7 @@ * Copyright (C) 2015 Rafael G. Martins <rafael@rafaelmartins.eng.br> * * This program can be distributed under the terms of the BSD License. - * See the file COPYING. + * See the file LICENSE. */ #ifndef _SOURCE_PARSER_H diff --git a/src/template-parser.c b/src/template-parser.c index beaaf7f..fd01ac2 100644 --- a/src/template-parser.c +++ b/src/template-parser.c @@ -3,7 +3,7 @@ * Copyright (C) 2015 Rafael G. Martins <rafael@rafaelmartins.eng.br> * * This program can be distributed under the terms of the BSD License. - * See the file COPYING. + * See the file LICENSE. */ #ifdef HAVE_CONFIG_H diff --git a/src/template-parser.h b/src/template-parser.h index e608099..d1e9bd6 100644 --- a/src/template-parser.h +++ b/src/template-parser.h @@ -3,7 +3,7 @@ * Copyright (C) 2015 Rafael G. Martins <rafael@rafaelmartins.eng.br> * * This program can be distributed under the terms of the BSD License. - * See the file COPYING. + * See the file LICENSE. */ #ifndef _TEMPLATE_PARSER_H diff --git a/src/utils/mem.c b/src/utils/mem.c index ff512df..7befc73 100644 --- a/src/utils/mem.c +++ b/src/utils/mem.c @@ -3,7 +3,7 @@ * Copyright (C) 2014-2015 Rafael G. Martins <rafael@rafaelmartins.eng.br> * * This program can be distributed under the terms of the BSD License. - * See the file COPYING. + * See the file LICENSE. */ #ifdef HAVE_CONFIG_H diff --git a/src/utils/slist.c b/src/utils/slist.c index f82c336..3d9b892 100644 --- a/src/utils/slist.c +++ b/src/utils/slist.c @@ -3,7 +3,7 @@ * Copyright (C) 2014-2015 Rafael G. Martins <rafael@rafaelmartins.eng.br> * * This program can be distributed under the terms of the BSD License. - * See the file COPYING. + * See the file LICENSE. */ #ifdef HAVE_CONFIG_H diff --git a/src/utils/strings.c b/src/utils/strings.c index 4a48f6d..502cfd4 100644 --- a/src/utils/strings.c +++ b/src/utils/strings.c @@ -3,7 +3,7 @@ * Copyright (C) 2014-2015 Rafael G. Martins <rafael@rafaelmartins.eng.br> * * This program can be distributed under the terms of the BSD License. - * See the file COPYING. + * See the file LICENSE. */ #ifdef HAVE_CONFIG_H diff --git a/src/utils/trie.c b/src/utils/trie.c index 22d8c48..c2cbe24 100644 --- a/src/utils/trie.c +++ b/src/utils/trie.c @@ -3,7 +3,7 @@ * Copyright (C) 2014-2015 Rafael G. Martins <rafael@rafaelmartins.eng.br> * * This program can be distributed under the terms of the BSD License. - * See the file COPYING. + * See the file LICENSE. */ #ifdef HAVE_CONFIG_H diff --git a/src/utils/utils.h b/src/utils/utils.h index 03f1639..8029a6c 100644 --- a/src/utils/utils.h +++ b/src/utils/utils.h @@ -3,7 +3,7 @@ * Copyright (C) 2014-2015 Rafael G. Martins <rafael@rafaelmartins.eng.br> * * This program can be distributed under the terms of the BSD License. - * See the file COPYING. + * See the file LICENSE. */ #ifndef _UTILS_UTILS_H diff --git a/tests/check_content_parser.c b/tests/check_content_parser.c index e4ae9ae..ea8de4b 100644 --- a/tests/check_content_parser.c +++ b/tests/check_content_parser.c @@ -3,7 +3,7 @@ * Copyright (C) 2015 Rafael G. Martins <rafael@rafaelmartins.eng.br> * * This program can be distributed under the terms of the BSD License. - * See the file COPYING. + * See the file LICENSE. */ #ifdef HAVE_CONFIG_H diff --git a/tests/check_error.c b/tests/check_error.c index c4c08a9..c7bc3c9 100644 --- a/tests/check_error.c +++ b/tests/check_error.c @@ -3,7 +3,7 @@ * Copyright (C) 2015 Rafael G. Martins <rafael@rafaelmartins.eng.br> * * This program can be distributed under the terms of the BSD License. - * See the file COPYING. + * See the file LICENSE. */ #ifdef HAVE_CONFIG_H diff --git a/tests/check_loader.c b/tests/check_loader.c index 64d8ec8..506bf4f 100644 --- a/tests/check_loader.c +++ b/tests/check_loader.c @@ -3,7 +3,7 @@ * Copyright (C) 2015 Rafael G. Martins <rafael@rafaelmartins.eng.br> * * This program can be distributed under the terms of the BSD License. - * See the file COPYING. + * See the file LICENSE. */ #ifdef HAVE_CONFIG_H diff --git a/tests/check_renderer.c b/tests/check_renderer.c index 386bbdc..154a8f0 100644 --- a/tests/check_renderer.c +++ b/tests/check_renderer.c @@ -3,7 +3,7 @@ * Copyright (C) 2015 Rafael G. Martins <rafael@rafaelmartins.eng.br> * * This program can be distributed under the terms of the BSD License. - * See the file COPYING. + * See the file LICENSE. */ #ifdef HAVE_CONFIG_H diff --git a/tests/check_source_parser.c b/tests/check_source_parser.c index 19b3e4c..65a3f9a 100644 --- a/tests/check_source_parser.c +++ b/tests/check_source_parser.c @@ -3,7 +3,7 @@ * Copyright (C) 2015 Rafael G. Martins <rafael@rafaelmartins.eng.br> * * This program can be distributed under the terms of the BSD License. - * See the file COPYING. + * See the file LICENSE. */ #ifdef HAVE_CONFIG_H diff --git a/tests/check_template_parser.c b/tests/check_template_parser.c index b018a89..2e0a208 100644 --- a/tests/check_template_parser.c +++ b/tests/check_template_parser.c @@ -3,7 +3,7 @@ * Copyright (C) 2015 Rafael G. Martins <rafael@rafaelmartins.eng.br> * * This program can be distributed under the terms of the BSD License. - * See the file COPYING. + * See the file LICENSE. */ #ifdef HAVE_CONFIG_H diff --git a/tests/check_utils.c b/tests/check_utils.c index b3bada7..a42c75a 100644 --- a/tests/check_utils.c +++ b/tests/check_utils.c @@ -3,7 +3,7 @@ * Copyright (C) 2014-2015 Rafael G. Martins <rafael@rafaelmartins.eng.br> * * This program can be distributed under the terms of the BSD License. - * See the file COPYING. + * See the file LICENSE. */ #include <stdarg.h> |