mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 18:28:21 +00:00
9 lines
136 B
C
9 lines
136 B
C
|
#ifndef __RAK_ITOA_H
|
||
|
#define __RAK_ITOA_H
|
||
|
|
||
|
#include "Export.h"
|
||
|
|
||
|
RAK_DLL_EXPORT char* Itoa( int value, char* result, int base );
|
||
|
|
||
|
#endif
|