repo.or.cz
/
kugel-rb
/
myfork.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
FS#8961 - Anti-Aliased Fonts.
[kugel-rb/myfork.git]
/
apps
/
plugins
/
zxbox
/
helpers.h
blob
ba8607d5cb4fb0ec8e6924ee0c2199e59048ed0c
1
#ifndef HELPERS_H
2
#define HELPERS_H
3
4
extern
int
my_getc
(
int
);
5
extern
int
my_putc
(
char
,
int
);
6
extern
off_t
my_ftell
(
int
);
7
extern
void
*
my_malloc
(
size_t
size
);
8
9
10
#define getc my_getc
11
#define malloc my_malloc
12
#define ftell my_ftell
13
#define putc my_putc
14
15
#endif
/* HELPERS_H */