exercism.org/c/isogram/isogram.h

9 lines
105 B
C
Raw Normal View History

2024-03-24 18:34:11 +01:00
#ifndef ISOGRAM_H
#define ISOGRAM_H
#include <stdbool.h>
bool is_isogram(const char phrase[]);
#endif