mirror of
https://github.com/digarok/gsplus.git
synced 2024-11-24 06:34:02 +00:00
remove uint8_t
This commit is contained in:
parent
7b87bb391f
commit
b2870733c8
@ -43,7 +43,7 @@ int g_crlf = 0;
|
||||
|
||||
void make_legal_prodos_name(char *new_name, char *old_name);
|
||||
|
||||
static int hex(uint8_t c)
|
||||
static int hex(byte c)
|
||||
{
|
||||
if (c >= '0' && c <= '9') return c - '0';
|
||||
if (c >= 'a' && c <= 'f') return c + 10 - 'a';
|
||||
|
Loading…
Reference in New Issue
Block a user