2003-09-30 17:47:42 +00:00
|
|
|
#include <u.h>
|
|
|
|
#include <libc.h>
|
|
|
|
#include <draw.h>
|
|
|
|
|
2003-10-11 02:47:43 +00:00
|
|
|
extern vlong _drawflength(int);
|
|
|
|
|
2003-09-30 17:47:42 +00:00
|
|
|
Font*
|
|
|
|
openfont(Display *d, char *name)
|
|
|
|
{
|
|
|
|
Font *fnt;
|
|
|
|
int fd, i, n;
|
|
|
|
char *buf;
|
|
|
|
|
|
|
|
fd = open(name, OREAD);
|
|
|
|
if(fd < 0)
|
|
|
|
return 0;
|
|
|
|
|
2003-10-11 02:47:43 +00:00
|
|
|
n = _drawflength(fd);
|
2003-09-30 17:47:42 +00:00
|
|
|
buf = malloc(n+1);
|
|
|
|
if(buf == 0){
|
|
|
|
close(fd);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
buf[n] = 0;
|
|
|
|
i = read(fd, buf, n);
|
|
|
|
close(fd);
|
|
|
|
if(i != n){
|
|
|
|
free(buf);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
fnt = buildfont(d, buf, name);
|
|
|
|
free(buf);
|
|
|
|
return fnt;
|
|
|
|
}
|