mame/src/emu/mamecore.c
Aaron Giles ee9f88963c Copyright cleanup:
- removed years from copyright notices
 - removed redundant (c) from copyright notices
 - updated "the MAME Team" to be "Nicola Salmoria and the MAME Team"
2008-01-06 00:47:40 +00:00

18 lines
567 B
C

/***************************************************************************
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 };