Algorithms_in_C 1.0.0
Set of algorithms implemented in C.
Loading...
Searching...
No Matches
isogram.h
1#ifndef ISOGRAM_H
2#define ISOGRAM_H
3
4#include <stdbool.h>
5
6bool is_isogram(const char phrase[]);
7
8#endif