mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
13 lines
145 B
C
13 lines
145 B
C
|
#ifndef __FORMAT_STRING_H
|
||
|
#define __FORMAT_STRING_H
|
||
|
|
||
|
#include "Export.h"
|
||
|
|
||
|
extern "C" {
|
||
|
char * FormatString(const char *format, ...);
|
||
|
}
|
||
|
|
||
|
|
||
|
#endif
|
||
|
|