This repository has been archived on 2026-04-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
original-mcpe-0.6.1/handheld/project/lib_projects/raknet/jni/RaknetSources/Itoa.h
2026-04-01 23:13:15 +02:00

16 lines
185 B
C

#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