commit 6e7e5d1ffac75e1b5659ba1c7c2f2d8fc312ee66
parent 3d56469fc438827036b99d78cc6ae7e653fd28c8
Author: Frederic Cambus <fred@statdns.com>
Date: Wed, 27 Jan 2016 12:47:06 +0100
Adding an array of months, for the upcoming split log functionalities
Diffstat:
2 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/src/config.c b/src/config.c
@@ -46,3 +46,18 @@ char *protocols[] = {
"HTTP/1.1",
"HTTP/1.0"
};
+
+char *months[] = {
+ "Jan",
+ "Feb",
+ "Mar",
+ "Apr",
+ "May",
+ "Jun",
+ "Jul",
+ "Aug",
+ "Sep",
+ "Oct",
+ "Nov",
+ "Dec"
+};
diff --git a/src/config.h b/src/config.h
@@ -33,4 +33,6 @@ extern char *continentsNames[];
extern char *methods[];
extern char *protocols[];
+extern char *months[];
+
#endif /* CONFIG_H */