Utils.h 106 B

123456789
  1. #ifndef UTILS_H
  2. #define UTILS_H
  3. #include <stdbool.h>
  4. bool isLetter(int c);
  5. bool isNumber(int c);
  6. #endif