mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-22 03:02:06 +00:00
Remove unused str2int()
Signed-off-by: Antonio Niño Díaz <antonio_nd@outlook.com>
This commit is contained in:
@@ -106,18 +106,6 @@ size_t symvaluetostring(char *dest, size_t maxLength, char *sym)
|
|||||||
return length;
|
return length;
|
||||||
}
|
}
|
||||||
|
|
||||||
static uint32_t str2int(char *s)
|
|
||||||
{
|
|
||||||
uint32_t r = 0;
|
|
||||||
|
|
||||||
while (*s) {
|
|
||||||
r <<= 8;
|
|
||||||
r |= (uint8_t)(*s++);
|
|
||||||
}
|
|
||||||
|
|
||||||
return r;
|
|
||||||
}
|
|
||||||
|
|
||||||
static uint32_t str2int2(char *s, int32_t length)
|
static uint32_t str2int2(char *s, int32_t length)
|
||||||
{
|
{
|
||||||
int32_t i;
|
int32_t i;
|
||||||
|
|||||||
Reference in New Issue
Block a user