mirror of
https://github.com/TheAlgorithms/C
synced 2024-11-22 13:31:21 +03: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
|