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
|
#ifndef __TTF_UTIL_H
#define __TTF_UTIL_H
#include "ttf.h"
/* $Id: ttfutil.h,v 1.2 1998/07/06 06:07:01 werner Exp $ */
#if !defined(EXIT_FAILURE)
#define EXIT_FAILURE 1
#endif
void FixedSplit(Fixed f, int b[]);
void ttfError(const char *msg);
#define FT_MAKE_TAG( _x1, _x2, _x3, _x4 ) _x1 << 24 | _x2 << 16 | _x3 << 8 | _x4
char *TagToStr(ULONG tag);
/* Functions copied or adapted from kpathsea. */
void xfseek (FILE *fp, long offset, int wherefrom, const char *funcname);
long xftell (FILE *fp, const char *funcname);
void *xmalloc (size_t size);
void *xcalloc (size_t nelem, size_t elsize);
char *xstrdup(const char *s);
#define FATAL_PERROR(str) do { perror (str); exit (EXIT_FAILURE); } while (0)
#define XTALLOC(n, t) ((t *) xmalloc ((n) * sizeof (t)))
#define XCALLOC(n, t) ((t *) xcalloc (n, sizeof (t)))
#define XTALLOC1(t) XTALLOC (1, t)
#define XCALLOC1(t) XCALLOC (1, t)
#include "protos.h"
#endif /* __TTF_UTIL_H */
/* end of ttfutil.h */
|