#ifndef UTILS_H #define UTILS_H bool isLetter(char c); bool isDigit(char c); bool isLetterOrDigit(char c); bool isAllowedInName(char c); #endif