summaryrefslogtreecommitdiff
path: root/src/utils.h
blob: b577a6d2a388e6015b6769edbe0f34b6aeb5cb96 (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
#ifndef _TTF2F_UTILS_H_
#define _TTF2F_UTILS_H_

#ifndef UNUSED
#define UNUSED(x) ((x)=(x))
#endif

#ifdef __riscos__
#define DIR_SEP "."
#else
#define DIR_SEP "/"
#endif

#ifndef max
#define max(a,b) (((a) > (b)) ? (a) : (b))
#endif

typedef enum ttf2f_result {
	TTF2F_RESULT_OK,
	TTF2F_RESULT_NOMEM,
	TTF2F_RESULT_OPEN,
	TTF2F_RESULT_WRITE
} ttf2f_result;

void ttf2f_poll(int active);
char *strndup(const char *s, size_t n);
long convert_units(long raw, long ppem);

#endif