#ifndef UTILS_H
#define UTILS_H

#include <stdbool.h>

bool isLetter(int c);
bool isNumber(int c);

#endif