blob: 1b465874cb804aef1ca68b930ef33bcc0a55b16c (
plain) (
tree)
|
|
#ifndef KEY_H
#define NKEYS (sizeof(keytab) / sizeof(keytab[0]))
struct key {
const char *word;
int count;
};
#define KEY_H
#endif
struct key *bsearch(char *word, struct key tab[], int n);
|