mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
13 lines
270 B
C++
13 lines
270 B
C++
#ifndef _BOOTLOADER_ITOA_H_
|
|
#define _BOOTLOADER_ITOA_H_
|
|
|
|
namespace Bootloader {
|
|
class Utility {
|
|
public:
|
|
static char * itoa(int value, char * result, int base);
|
|
static int versionSum(const char * version, int length);
|
|
};
|
|
}
|
|
|
|
#endif
|