2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
9 #include <exec/types.h>
12 // This wastes a lot of memory - most characters are likely to share the
13 // same fg/bg/flags. One option would be to optimize away the fgpen/bgpen/
14 // flags buffers if they're the same for every character in the line
17 // FIXME: Replace with a MinNode?
18 struct charmap_line
*next
;
19 struct charmap_line
*prev
;
28 VOID
charmap_dispose_lines(struct charmap_line
*line
);
29 struct charmap_line
*charmap_dispose_line(struct charmap_line
*line
);
30 struct charmap_line
*charmap_newline(struct charmap_line
*next
,
31 struct charmap_line
*prev
);
32 VOID
charmap_resize(struct charmap_line
*line
, ULONG newsize
);