Deleted Added
full compact
teken.h (188391) teken.h (189617)
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 188391 2009-02-09 15:55:21Z ed $
26 * $FreeBSD: head/sys/dev/syscons/teken/teken.h 189617 2009-03-10 11:28:54Z ed $
27 */
28
29#ifndef _TEKEN_H_
30#define _TEKEN_H_
31
32/*
33 * libteken: terminal emulation library.
34 *

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

169
170/* Deliver character input. */
171void teken_input(teken_t *, const void *, size_t);
172
173/* Get/set teken attributes. */
174const teken_attr_t *teken_get_curattr(teken_t *);
175const teken_attr_t *teken_get_defattr(teken_t *);
176void teken_set_cursor(teken_t *, const teken_pos_t *);
27 */
28
29#ifndef _TEKEN_H_
30#define _TEKEN_H_
31
32/*
33 * libteken: terminal emulation library.
34 *

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

169
170/* Deliver character input. */
171void teken_input(teken_t *, const void *, size_t);
172
173/* Get/set teken attributes. */
174const teken_attr_t *teken_get_curattr(teken_t *);
175const teken_attr_t *teken_get_defattr(teken_t *);
176void teken_set_cursor(teken_t *, const teken_pos_t *);
177void teken_set_curattr(teken_t *, const teken_attr_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_ */
178void teken_set_defattr(teken_t *, const teken_attr_t *);
179void teken_set_winsize(teken_t *, const teken_pos_t *);
180
181#endif /* !_TEKEN_H_ */