mirror of
https://github.com/holub/mame
synced 2025-05-30 01:23:07 +03:00

- removed years from copyright notices - removed redundant (c) from copyright notices - updated "the MAME Team" to be "Nicola Salmoria and the MAME Team"
18 lines
567 B
C
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 };
|