SnuviUtils.h 216 B

123456789101112131415161718
  1. #ifndef SNUVI_UTILS_H
  2. #define SNUVI_UTILS_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include <stdbool.h>
  7. bool isLetter(int c);
  8. bool isNumber(int c);
  9. bool isAllowedInName(int c);
  10. #ifdef __cplusplus
  11. }
  12. #endif
  13. #endif