aboutsummaryrefslogtreecommitdiff
path: root/6.1.1/key.h
blob: 1b465874cb804aef1ca68b930ef33bcc0a55b16c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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);