6 lines
70 B
C
6 lines
70 B
C
#include "utils.h"
|
|
|
|
int char2dec(const char c){
|
|
return c - '0';
|
|
}
|