commit a7eca8caa3027bcf9dc1343e6851b2d9b0ff320b
parent 93e3931d6605c0851387973079ff11babf7f719a
Author: Frederic Cambus <fcambus@users.sourceforge.net>
Date: Sun, 19 Jul 2015 16:10:19 +0200
Adding comments after '#endif' preprocessor directives
Diffstat:
8 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/src/definitions.h b/src/definitions.h
@@ -17,4 +17,4 @@
extern char *methods[];
extern char *protocols[];
-#endif
+#endif /* DEFINITIONS_H */
diff --git a/src/logswan.c b/src/logswan.c
@@ -4,7 +4,7 @@
/* https://github.com/fcambus/logswan */
/* */
/* Created: 2015/05/31 */
-/* Last Updated: 2015/07/14 */
+/* Last Updated: 2015/07/19 */
/* */
/* Logswan is released under the BSD 3-Clause license. */
/* See LICENSE file for details. */
diff --git a/src/logswan.h b/src/logswan.h
@@ -4,7 +4,7 @@
/* https://github.com/fcambus/logswan */
/* */
/* Created: 2015/05/31 */
-/* Last Updated: 2015/07/14 */
+/* Last Updated: 2015/07/19 */
/* */
/* Logswan is released under the BSD 3-Clause license. */
/* See LICENSE file for details. */
@@ -17,4 +17,4 @@
#define VERSION "Logswan"
#define LINE_MAX_LENGTH 4096
-#endif
+#endif /* LOGSWAN_H */
diff --git a/src/output.c b/src/output.c
@@ -4,7 +4,7 @@
/* https://github.com/fcambus/logswan */
/* */
/* Created: 2015/05/31 */
-/* Last Updated: 2015/06/24 */
+/* Last Updated: 2015/07/19 */
/* */
/* Logswan is released under the BSD 3-Clause license. */
/* See LICENSE file for details. */
diff --git a/src/output.h b/src/output.h
@@ -4,7 +4,7 @@
/* https://github.com/fcambus/logswan */
/* */
/* Created: 2015/05/31 */
-/* Last Updated: 2015/06/24 */
+/* Last Updated: 2015/07/19 */
/* */
/* Logswan is released under the BSD 3-Clause license. */
/* See LICENSE file for details. */
@@ -18,4 +18,4 @@
char *output(Results);
-#endif
+#endif /* OUTPUT_H */
diff --git a/src/parse.c b/src/parse.c
@@ -4,7 +4,7 @@
/* https://github.com/fcambus/logswan */
/* */
/* Created: 2015/05/31 */
-/* Last Updated: 2015/06/22 */
+/* Last Updated: 2015/07/19 */
/* */
/* Logswan is released under the BSD 3-Clause license. */
/* See LICENSE file for details. */
diff --git a/src/parse.h b/src/parse.h
@@ -4,7 +4,7 @@
/* https://github.com/fcambus/logswan */
/* */
/* Created: 2015/05/31 */
-/* Last Updated: 2015/06/22 */
+/* Last Updated: 2015/07/19 */
/* */
/* Logswan is released under the BSD 3-Clause license. */
/* See LICENSE file for details. */
@@ -41,4 +41,4 @@ void parseDate(struct date*, char *);
void parseLine(struct logLine*, char *);
void parseRequest(struct request*, char *);
-#endif
+#endif /* PARSE_H */
diff --git a/src/results.h b/src/results.h
@@ -4,7 +4,7 @@
/* https://github.com/fcambus/logswan */
/* */
/* Created: 2015/05/31 */
-/* Last Updated: 2015/06/24 */
+/* Last Updated: 2015/07/19 */
/* */
/* Logswan is released under the BSD 3-Clause license. */
/* See LICENSE file for details. */
@@ -38,4 +38,4 @@ struct results {
typedef struct results Results;
-#endif
+#endif /* RESULTS_H */