commit 65f54d62919506126963b3ca4a6b85d116c697b9
parent 0a35faeb5b4724580bd8b02c46de5b209e48afd8
Author: Frederic Cambus <fred@statdns.com>
Date: Wed, 20 Jan 2016 20:44:58 +0100
Renaming 'alconfig' to simply 'config'
Diffstat:
4 files changed, 23 insertions(+), 23 deletions(-)
diff --git a/src/alconfig.h b/src/alconfig.h
@@ -1,21 +0,0 @@
-//
-// alconfig.h
-// AnsiLove/C
-//
-// Copyright (C) 2011-2016 Stefan Vogt, Brian Cassidy, Frederic Cambus.
-// All rights reserved.
-//
-// This source code is licensed under the BSD 3-Clause License.
-// See the file LICENSE for details.
-//
-
-#ifndef alconfig_h
-#define alconfig_h
-
-// configuration defines
-#define VERSION "3.0.1"
-
-#define SUBSTITUTE_BREAK "1"
-#define WRAP_COLUMN_80 "1"
-
-#endif
diff --git a/src/ansilove.h b/src/ansilove.h
@@ -16,7 +16,7 @@
#include <string.h>
#include <math.h>
#include <gd.h>
-#include "alconfig.h"
+#include "config.h"
#include "fonts.h"
#include "strtolower.h"
#include "substr.h"
diff --git a/src/config.h b/src/config.h
@@ -0,0 +1,21 @@
+//
+// config.h
+// AnsiLove/C
+//
+// Copyright (C) 2011-2016 Stefan Vogt, Brian Cassidy, Frederic Cambus.
+// All rights reserved.
+//
+// This source code is licensed under the BSD 3-Clause License.
+// See the file LICENSE for details.
+//
+
+#ifndef config_h
+#define config_h
+
+// configuration defines
+#define VERSION "3.0.1"
+
+#define SUBSTITUTE_BREAK "1"
+#define WRAP_COLUMN_80 "1"
+
+#endif
diff --git a/src/main.c b/src/main.c
@@ -25,7 +25,7 @@
#include "strtonum.h"
#endif
-#include "alconfig.h"
+#include "config.h"
#include "strtolower.h"
#include "substr.h"
#include "ansilove.h"