blob: 17cd47e55752e2ab3461a0275dde3dbaa2539e79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#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 $ */
void FixedSplit(Fixed f, int b[]);
void TwoByteSwap(unsigned char *buf, int nbytes);
void FourByteSwap(unsigned char *buf, int nbytes);
void FourByteSwap(unsigned char *buf, int nbytes);
void ttfError(const char *msg);
#include "protos.h"
#endif /* __TTF_UTIL_H */
/* end of ttfutil.h */
|