#ifndef SNUVI_UTILS_H #define SNUVI_UTILS_H #include <stdbool.h> bool isLetter(int c); bool isNumber(int c); bool isAllowedInName(int c); #endif