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