pangram (C)

This commit is contained in:
2021-08-09 09:55:28 +02:00
parent b2448131c0
commit 46793292f1
5 changed files with 193 additions and 0 deletions

17
c/pangram/src/pangram.h Normal file
View File

@@ -0,0 +1,17 @@
#ifndef PANGRAM_H
#define PANGRAM_H
#include <stdbool.h>
bool is_pangram(const char *sentence);
/* See GNUmakefile in following link for explanation
* https://exercism.io/my/solutions/103b2f7d92db42309c1988030f5202c7
*/
#ifdef TESTALL
#undef TEST_IGNORE
#define TEST_IGNORE() {}
#endif
#endif