summary refs log blame commit diff stats
path: root/c/pangram/src/pangram.h
blob: e95d685faac7eed69eeefa31dc7de3deac0c63d8 (plain) (tree)
1
2
3
4
5
6
7
8







                                      
#ifndef PANGRAM_H
#define PANGRAM_H

#include <stdbool.h>

bool is_pangram(const char *sentence);

#endif