TheAlgorithms-C/exercism/isogram/isogram.h
2018-01-24 22:24:43 +01:00

9 lines
105 B
C

#ifndef ISOGRAM_H
#define ISOGRAM_H
#include <stdbool.h>
bool is_isogram(const char phrase[]);
#endif