aboutsummaryrefslogtreecommitdiffstats
path: root/src/common
diff options
context:
space:
mode:
authorRafael G. Martins <rafael@rafaelmartins.eng.br>2018-10-14 23:57:23 +0200
committerRafael G. Martins <rafael@rafaelmartins.eng.br>2018-10-14 23:57:23 +0200
commit452c0de1615f5f7e18c6bf8e8c9ca4f81607ced8 (patch)
treebb3ec860dc4483475e2b4e043f3ec6f71d2923a5 /src/common
parent70d3a370145ba0abc205607e9d771eb56d7bc310 (diff)
downloadblogc-452c0de1615f5f7e18c6bf8e8c9ca4f81607ced8.tar.gz
blogc-452c0de1615f5f7e18c6bf8e8c9ca4f81607ced8.tar.bz2
blogc-452c0de1615f5f7e18c6bf8e8c9ca4f81607ced8.zip
*: update copyright
Diffstat (limited to 'src/common')
-rw-r--r--src/common/compat.h2
-rw-r--r--src/common/config-parser.c2
-rw-r--r--src/common/config-parser.h2
-rw-r--r--src/common/error.c2
-rw-r--r--src/common/error.h2
-rw-r--r--src/common/file.c2
-rw-r--r--src/common/file.h2
-rw-r--r--src/common/stdin.c2
-rw-r--r--src/common/stdin.h2
-rw-r--r--src/common/utf8.c2
-rw-r--r--src/common/utf8.h2
-rw-r--r--src/common/utils.c2
-rw-r--r--src/common/utils.h2
13 files changed, 13 insertions, 13 deletions
diff --git a/src/common/compat.h b/src/common/compat.h
index 021dc6e..dde186b 100644
--- a/src/common/compat.h
+++ b/src/common/compat.h
@@ -1,6 +1,6 @@
/*
* blogc: A blog compiler.
- * Copyright (C) 2014-2017 Rafael G. Martins <rafael@rafaelmartins.eng.br>
+ * Copyright (C) 2014-2018 Rafael G. Martins <rafael@rafaelmartins.eng.br>
*
* This program can be distributed under the terms of the BSD License.
* See the file LICENSE.
diff --git a/src/common/config-parser.c b/src/common/config-parser.c
index 2a1546d..1dc7ca6 100644
--- a/src/common/config-parser.c
+++ b/src/common/config-parser.c
@@ -1,6 +1,6 @@
/*
* blogc: A blog compiler.
- * Copyright (C) 2014-2017 Rafael G. Martins <rafael@rafaelmartins.eng.br>
+ * Copyright (C) 2014-2018 Rafael G. Martins <rafael@rafaelmartins.eng.br>
*
* This program can be distributed under the terms of the BSD License.
* See the file LICENSE.
diff --git a/src/common/config-parser.h b/src/common/config-parser.h
index e8068f6..14ad403 100644
--- a/src/common/config-parser.h
+++ b/src/common/config-parser.h
@@ -1,6 +1,6 @@
/*
* blogc: A blog compiler.
- * Copyright (C) 2014-2017 Rafael G. Martins <rafael@rafaelmartins.eng.br>
+ * Copyright (C) 2014-2018 Rafael G. Martins <rafael@rafaelmartins.eng.br>
*
* This program can be distributed under the terms of the BSD License.
* See the file LICENSE.
diff --git a/src/common/error.c b/src/common/error.c
index 19f369c..4538c01 100644
--- a/src/common/error.c
+++ b/src/common/error.c
@@ -1,6 +1,6 @@
/*
* blogc: A blog compiler.
- * Copyright (C) 2014-2017 Rafael G. Martins <rafael@rafaelmartins.eng.br>
+ * Copyright (C) 2014-2018 Rafael G. Martins <rafael@rafaelmartins.eng.br>
*
* This program can be distributed under the terms of the BSD License.
* See the file LICENSE.
diff --git a/src/common/error.h b/src/common/error.h
index 34aab74..a567c6d 100644
--- a/src/common/error.h
+++ b/src/common/error.h
@@ -1,6 +1,6 @@
/*
* blogc: A blog compiler.
- * Copyright (C) 2014-2017 Rafael G. Martins <rafael@rafaelmartins.eng.br>
+ * Copyright (C) 2014-2018 Rafael G. Martins <rafael@rafaelmartins.eng.br>
*
* This program can be distributed under the terms of the BSD License.
* See the file LICENSE.
diff --git a/src/common/file.c b/src/common/file.c
index adfc22e..a2f7340 100644
--- a/src/common/file.c
+++ b/src/common/file.c
@@ -1,6 +1,6 @@
/*
* blogc: A blog compiler.
- * Copyright (C) 2014-2017 Rafael G. Martins <rafael@rafaelmartins.eng.br>
+ * Copyright (C) 2014-2018 Rafael G. Martins <rafael@rafaelmartins.eng.br>
*
* This program can be distributed under the terms of the BSD License.
* See the file LICENSE.
diff --git a/src/common/file.h b/src/common/file.h
index 91224fc..73793ea 100644
--- a/src/common/file.h
+++ b/src/common/file.h
@@ -1,6 +1,6 @@
/*
* blogc: A blog compiler.
- * Copyright (C) 2014-2017 Rafael G. Martins <rafael@rafaelmartins.eng.br>
+ * Copyright (C) 2014-2018 Rafael G. Martins <rafael@rafaelmartins.eng.br>
*
* This program can be distributed under the terms of the BSD License.
* See the file LICENSE.
diff --git a/src/common/stdin.c b/src/common/stdin.c
index 0c2afd1..5b01e0e 100644
--- a/src/common/stdin.c
+++ b/src/common/stdin.c
@@ -1,6 +1,6 @@
/*
* blogc: A blog compiler.
- * Copyright (C) 2014-2017 Rafael G. Martins <rafael@rafaelmartins.eng.br>
+ * Copyright (C) 2014-2018 Rafael G. Martins <rafael@rafaelmartins.eng.br>
*
* This program can be distributed under the terms of the BSD License.
* See the file LICENSE.
diff --git a/src/common/stdin.h b/src/common/stdin.h
index 825b1bb..e0eabfa 100644
--- a/src/common/stdin.h
+++ b/src/common/stdin.h
@@ -1,6 +1,6 @@
/*
* blogc: A blog compiler.
- * Copyright (C) 2014-2017 Rafael G. Martins <rafael@rafaelmartins.eng.br>
+ * Copyright (C) 2014-2018 Rafael G. Martins <rafael@rafaelmartins.eng.br>
*
* This program can be distributed under the terms of the BSD License.
* See the file LICENSE.
diff --git a/src/common/utf8.c b/src/common/utf8.c
index 5c7b51f..fe013e4 100644
--- a/src/common/utf8.c
+++ b/src/common/utf8.c
@@ -1,7 +1,7 @@
/*
* blogc: A blog compiler.
* Copyright (c) 2008-2010 Bjoern Hoehrmann <bjoern@hoehrmann.de>
- * Copyright (c) 2014-2017 Rafael G. Martins <rafael@rafaelmartins.eng.br>
+ * Copyright (c) 2014-2018 Rafael G. Martins <rafael@rafaelmartins.eng.br>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
diff --git a/src/common/utf8.h b/src/common/utf8.h
index 206a2cc..e855e31 100644
--- a/src/common/utf8.h
+++ b/src/common/utf8.h
@@ -1,6 +1,6 @@
/*
* blogc: A blog compiler.
- * Copyright (C) 2014-2017 Rafael G. Martins <rafael@rafaelmartins.eng.br>
+ * Copyright (C) 2014-2018 Rafael G. Martins <rafael@rafaelmartins.eng.br>
*
* This program can be distributed under the terms of the BSD License.
* See the file LICENSE.
diff --git a/src/common/utils.c b/src/common/utils.c
index 7065047..084bfb6 100644
--- a/src/common/utils.c
+++ b/src/common/utils.c
@@ -1,6 +1,6 @@
/*
* blogc: A blog compiler.
- * Copyright (C) 2014-2017 Rafael G. Martins <rafael@rafaelmartins.eng.br>
+ * Copyright (C) 2014-2018 Rafael G. Martins <rafael@rafaelmartins.eng.br>
*
* This program can be distributed under the terms of the BSD License.
* See the file LICENSE.
diff --git a/src/common/utils.h b/src/common/utils.h
index 101a4b3..9f7192d 100644
--- a/src/common/utils.h
+++ b/src/common/utils.h
@@ -1,6 +1,6 @@
/*
* blogc: A blog compiler.
- * Copyright (C) 2014-2017 Rafael G. Martins <rafael@rafaelmartins.eng.br>
+ * Copyright (C) 2014-2018 Rafael G. Martins <rafael@rafaelmartins.eng.br>
*
* This program can be distributed under the terms of the BSD License.
* See the file LICENSE.