Files
Upsilon/bootloader/utility.h
2022-04-09 11:02:34 +02:00

12 lines
242 B
C++

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