blob: 55b6b8a1edbc85755f3ddadd116fcd90985d4d41 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 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] = { 0 };
|