mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
de10086338
update version
15 lines
413 B
C
15 lines
413 B
C
#include "PikaStdData_Utils.h"
|
|
#include "dataStrs.h"
|
|
|
|
Arg* PikaStdData_Utils_int_to_bytes(PikaObj* self, int val) {
|
|
if (val > 0xFF) {
|
|
obj_setErrorCode(self, 1);
|
|
__platform_printf(
|
|
"OverflowError: cannot convert value larger than 0xFF to "
|
|
"bytes\r\n");
|
|
return arg_newNull();
|
|
}
|
|
uint8_t val_bytes = (uint8_t)val;
|
|
return arg_newBytes(&val_bytes, 1);
|
|
}
|