Deleted Added
full compact
teken.h (197117) teken.h (197470)
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/teken/teken.h 197117 2009-09-12 12:44:21Z ed $
26 * $FreeBSD: head/sys/teken/teken.h 197470 2009-09-24 20:33:14Z ed $
27 */
28
29#ifndef _TEKEN_H_
30#define _TEKEN_H_
31
32/*
33 * libteken: terminal emulation library.
34 *

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

104 tf_cursor_t *tf_cursor;
105 tf_putchar_t *tf_putchar;
106 tf_fill_t *tf_fill;
107 tf_copy_t *tf_copy;
108 tf_param_t *tf_param;
109 tf_respond_t *tf_respond;
110} teken_funcs_t;
111
27 */
28
29#ifndef _TEKEN_H_
30#define _TEKEN_H_
31
32/*
33 * libteken: terminal emulation library.
34 *

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

104 tf_cursor_t *tf_cursor;
105 tf_putchar_t *tf_putchar;
106 tf_fill_t *tf_fill;
107 tf_copy_t *tf_copy;
108 tf_param_t *tf_param;
109 tf_respond_t *tf_respond;
110} teken_funcs_t;
111
112typedef teken_char_t teken_scs_t(teken_char_t);
112typedef teken_char_t teken_scs_t(teken_t *, teken_char_t);
113
114/*
115 * Terminal state.
116 */
117
118struct __teken {
119 const teken_funcs_t *t_funcs;
120 void *t_softc;

--- 54 unchanged lines hidden ---
113
114/*
115 * Terminal state.
116 */
117
118struct __teken {
119 const teken_funcs_t *t_funcs;
120 void *t_softc;

--- 54 unchanged lines hidden ---