Deleted Added
full compact
teken.h (187469) teken.h (188391)
1/*-
2 * Copyright (c) 2008-2009 Ed Schouten <ed@FreeBSD.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 2008-2009 Ed Schouten <ed@FreeBSD.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/dev/syscons/teken/teken.h 187469 2009-01-20 11:34:28Z ed $
26 * $FreeBSD: head/sys/dev/syscons/teken/teken.h 188391 2009-02-09 15:55:21Z ed $
27 */
28
29#ifndef _TEKEN_H_
30#define _TEKEN_H_
31
32/*
33 * libteken: terminal emulation library.
34 *

--- 130 unchanged lines hidden (view full) ---

165};
166
167/* Initialize teken structure. */
168void teken_init(teken_t *, const teken_funcs_t *, void *);
169
170/* Deliver character input. */
171void teken_input(teken_t *, const void *, size_t);
172
27 */
28
29#ifndef _TEKEN_H_
30#define _TEKEN_H_
31
32/*
33 * libteken: terminal emulation library.
34 *

--- 130 unchanged lines hidden (view full) ---

165};
166
167/* Initialize teken structure. */
168void teken_init(teken_t *, const teken_funcs_t *, void *);
169
170/* Deliver character input. */
171void teken_input(teken_t *, const void *, size_t);
172
173/* Set teken attributes. */
173/* Get/set teken attributes. */
174const teken_attr_t *teken_get_curattr(teken_t *);
175const teken_attr_t *teken_get_defattr(teken_t *);
174void teken_set_cursor(teken_t *, const teken_pos_t *);
175void teken_set_defattr(teken_t *, const teken_attr_t *);
176void teken_set_winsize(teken_t *, const teken_pos_t *);
177
178#endif /* !_TEKEN_H_ */
176void teken_set_cursor(teken_t *, const teken_pos_t *);
177void teken_set_defattr(teken_t *, const teken_attr_t *);
178void teken_set_winsize(teken_t *, const teken_pos_t *);
179
180#endif /* !_TEKEN_H_ */