Files
exercism/c/isogram/src/isogram.h
2021-08-08 21:11:22 +02:00

14 lines
173 B
C

#ifndef ISOGRAM_H
#define ISOGRAM_H
#include <stdbool.h>
bool is_isogram(const char phrase[]);
#ifdef TESTALL
#undef TEST_IGNORE
#define TEST_IGNORE() {}
#endif
#endif