mirror of
https://gitea.sffempire.ru/Kolyah35/minecraft-pe-0.6.1.git
synced 2026-03-19 22:43:32 +00:00
16 lines
185 B
C
Executable File
16 lines
185 B
C
Executable File
#ifndef __RAK_ITOA_H
|
|
#define __RAK_ITOA_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
char* Itoa( int value, char* result, int base );
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif
|