aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/dict/simple.c
blob: ea0443bacf46d39ef1779840e895cbe89519b7fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include <u.h>
#include <libc.h>
#include <bio.h>
#include "dict.h"

/*
 * Routines for handling dictionaries in UTF, headword
 * separated from entry by tab, entries separated by newline.
 */

void
simpleprintentry(Entry e, int cmd)
{
	uchar *p, *pe;

	p = (uchar *)e.start;
	pe = (uchar *)e.end;
	while(p < pe){
		if(*p == '\t'){
			if(cmd == 'h')
				break;
			else
				outchar(' '), ++p;
		}else if(*p == '\n')
			break;
		else
			outchar(*p++);
	}
	outnl(0);
}

long
simplenextoff(long fromoff)
{
	if(Bseek(bdict, fromoff, 0) < 0)
		return -1;
	if(Brdline(bdict, '\n') == 0)
		return -1;
	return Boffset(bdict);
}

void
simpleprintkey(void)
{
	Bprint(bout, "No pronunciation key.\n");
}