11 lines
215 B
C
11 lines
215 B
C
/*
|
|
* Copyright 2009, Pier Luigi Fiorini. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _LOGGER_H
|
|
#define _LOGGER_H
|
|
|
|
void logmsg(const char* message, ...);
|
|
|
|
#endif // _LOGGER_H
|