1 2 3 4 5 6 7 8
#ifndef ISOGRAM_H #define ISOGRAM_H #include <stdbool.h> bool is_isogram(const char phrase[]); #endif