summary refs log tree commit diff stats
path: root/c/pangram/src/pangram.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/pangram/src/pangram.h')
-rw-r--r--c/pangram/src/pangram.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/c/pangram/src/pangram.h b/c/pangram/src/pangram.h
new file mode 100644
index 0000000..e95d685
--- /dev/null
+++ b/c/pangram/src/pangram.h
@@ -0,0 +1,8 @@
+#ifndef PANGRAM_H
+#define PANGRAM_H
+
+#include <stdbool.h>
+
+bool is_pangram(const char *sentence);
+
+#endif