exercism.org/c/isogram/isogram.h
2024-03-24 18:37:22 +01:00

8 lines
105 B
C

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