#ifndef SNUVI_UTILS_H #define SNUVI_UTILS_H #ifdef __cplusplus extern "C" { #endif #include bool isLetter(int c); bool isNumber(int c); bool isAllowedInName(int c); #ifdef __cplusplus } #endif #endif