SnuviUtils.h 147 B

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