convert.h 114 B

1234
  1. #pragma once
  2. #define CONVERT_DIGIT_TO_CHAR(digit) ((digit) + '0')
  3. #define CONVERT_CHAR_TO_DIGIT(ch) ((ch) - '0')