oopsies
This commit is contained in:
8
src/Utility/Utility.c
Normal file
8
src/Utility/Utility.c
Normal file
@@ -0,0 +1,8 @@
|
||||
#include "Utility.h"
|
||||
|
||||
int hex_to_int(char c) {
|
||||
if (c >= '0' && c <= '9') return c - '0';
|
||||
if (c >= 'a' && c <= 'f') return c - 'a' + 10;
|
||||
if (c >= 'A' && c <= 'F') return c - 'A' + 10;
|
||||
return -1;
|
||||
}
|
||||
Reference in New Issue
Block a user