Files
Upsilon/bootloader/utility.h
2022-04-08 18:33:27 +02:00

10 lines
208 B
C++

#ifndef _BOOTLOADER_ITOA_H_
#define _BOOTLOADER_ITOA_H_
namespace Utility {
static char * itoa(int value, char * result, int base);
static int versionSum(const char * version, int length);
}
#endif