summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/mamecore.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/mamecore.c')
-rw-r--r--src/emu/mamecore.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/emu/mamecore.c b/src/emu/mamecore.c
new file mode 100644
index 00000000000..aa3cf98c9d0
--- /dev/null
+++ b/src/emu/mamecore.c
@@ -0,0 +1,17 @@
+/***************************************************************************
+
+ mamecore.c
+
+ Simple core functions that are defined in mamecore.h and which may
+ need to be accessed by other MAME-related tools.
+
+ Copyright (c) 1996-2007, Nicola Salmoria and the MAME Team.
+ Visit http://mamedev.org for licensing and usage restrictions.
+
+****************************************************************************/
+
+#include "mamecore.h"
+#include <ctype.h>
+
+/* a giant string buffer for temporary strings */
+char giant_string_buffer[GIANT_STRING_BUFFER_SIZE];