mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-21 06:40:37 +01:00
11 lines
223 B
C++
11 lines
223 B
C++
#ifndef _BOOTLOADER_ITOA_H_
|
|
#define _BOOTLOADER_ITOA_H_
|
|
|
|
namespace Bootloader {
|
|
class Utility {
|
|
public:
|
|
static char * itoa(int value, char * result, int base);
|
|
};
|
|
}
|
|
|
|
#endif // _BOOTLOADER_ITOA_H_
|