Initial revision
This commit is contained in:
parent
ed7c8e8d02
commit
76193d7cb0
223 changed files with 32479 additions and 0 deletions
32
src/libdraw/openfont.c
Normal file
32
src/libdraw/openfont.c
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#include <u.h>
|
||||
#include <libc.h>
|
||||
#include <draw.h>
|
||||
|
||||
Font*
|
||||
openfont(Display *d, char *name)
|
||||
{
|
||||
Font *fnt;
|
||||
int fd, i, n;
|
||||
char *buf;
|
||||
|
||||
fd = open(name, OREAD);
|
||||
if(fd < 0)
|
||||
return 0;
|
||||
|
||||
n = flength(fd);
|
||||
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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue