mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-09-23 15:34:20 +00:00
9 lines
105 B
C
9 lines
105 B
C
#ifndef ISOGRAM_H
|
|
#define ISOGRAM_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
bool is_isogram(const char phrase[]);
|
|
|
|
#endif
|