Last change
on this file since 1241 was
1241,
checked in by Sam Hocevar, 16 years ago
|
- Make stdin input line-aware so that we don't have to wait until EOF to
display stuff.
- Reorganise stuff and fix memory leaks.
|
-
Property svn:keywords set to
Id
|
File size:
800 bytes
|
Line | |
---|
1 | /* |
---|
2 | * TOIlet The Other Implementation’s letters |
---|
3 | * Copyright (c) 2006 Sam Hocevar <sam@zoy.org> |
---|
4 | * All Rights Reserved |
---|
5 | * |
---|
6 | * $Id: render.h 1241 2006-10-26 13:07:58Z sam $ |
---|
7 | * |
---|
8 | * This program is free software; you can redistribute it and/or |
---|
9 | * modify it under the terms of the Do What The Fuck You Want To |
---|
10 | * Public License, Version 2, as published by Sam Hocevar. See |
---|
11 | * http://sam.zoy.org/wtfpl/COPYING for more details. |
---|
12 | */ |
---|
13 | |
---|
14 | /* |
---|
15 | * This header defines text to canvas rendering functions. |
---|
16 | */ |
---|
17 | |
---|
18 | extern int init_tiny(context_t *); |
---|
19 | extern int init_big(context_t *); |
---|
20 | extern int init_figlet(context_t *); |
---|
21 | |
---|
22 | extern int render_init(context_t *); |
---|
23 | extern int render_stdin(context_t *); |
---|
24 | extern int render_list(context_t *, unsigned int, char *[]); |
---|
25 | extern int render_line(context_t *); |
---|
26 | extern int render_end(context_t *); |
---|
27 | |
---|
Note: See
TracBrowser
for help on using the repository browser.