aboutsummaryrefslogtreecommitdiff
path: root/libdraw/openfont.c
blob: 4be9871525cf92e06ad10a2e01f57abba5621634 (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
#include "lib9.h"
#include "kernel.h"
#include "draw.h"

Font*
openfont(Display *d, char *name)
{
	Font *fnt;
	int fd, i, n;
	char *buf;
	Dir *dir;

	if( is_subfont_ft(name) )
		return nil;

	fd = libopen(name, OREAD);
	if(fd < 0)
		return 0;

	if((dir = libdirfstat(fd)) == nil){
    Err0:
		libclose(fd);
		return 0;
	}
	n = dir->length;
	free(dir);
	buf = malloc(n+1);
	if(buf == 0)
		goto Err0;
	buf[n] = 0;
	i = libreadn(fd, buf, n);
	libclose(fd);
	if(i != n){
		free(buf);
		return 0;
	}
	fnt = buildfont(d, buf, name);
	free(buf);
	return fnt;
}