TheAlgorithms-C/exercism/isogram/isogram.h

9 lines
105 B
C
Raw Normal View History

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