CryptoDit/utils.c
2026-01-31 16:45:53 +01:00

6 lines
70 B
C

#include "utils.h"
int char2dec(const char c){
return c - '0';
}