3218258 ^
1 2 3 4 5 6 7 8
#ifndef PANGRAM_H #define PANGRAM_H #include <stdbool.h> bool is_pangram(const char *sentence); #endif