line.h (69851e4ab8feeb369119a44ddca430c0ee15f0d8) line.h (95713967ba52389f7cea75704d0cf048080ec218)
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * Copyright (C) 2001, 2002 Jeff Dike (jdike@karaya.com)
4 */
5
6#ifndef __LINE_H__
7#define __LINE_H__
8

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

59extern void line_close(struct tty_struct *tty, struct file * filp);
60extern int line_open(struct tty_struct *tty, struct file *filp);
61extern int line_install(struct tty_driver *driver, struct tty_struct *tty,
62 struct line *line);
63extern void line_cleanup(struct tty_struct *tty);
64extern void line_hangup(struct tty_struct *tty);
65extern int line_setup(char **conf, unsigned nlines, char **def,
66 char *init, char *name);
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * Copyright (C) 2001, 2002 Jeff Dike (jdike@karaya.com)
4 */
5
6#ifndef __LINE_H__
7#define __LINE_H__
8

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

59extern void line_close(struct tty_struct *tty, struct file * filp);
60extern int line_open(struct tty_struct *tty, struct file *filp);
61extern int line_install(struct tty_driver *driver, struct tty_struct *tty,
62 struct line *line);
63extern void line_cleanup(struct tty_struct *tty);
64extern void line_hangup(struct tty_struct *tty);
65extern int line_setup(char **conf, unsigned nlines, char **def,
66 char *init, char *name);
67extern int line_write(struct tty_struct *tty, const u8 *buf, int len);
67extern ssize_t line_write(struct tty_struct *tty, const u8 *buf, size_t len);
68extern unsigned int line_chars_in_buffer(struct tty_struct *tty);
69extern void line_flush_buffer(struct tty_struct *tty);
70extern void line_flush_chars(struct tty_struct *tty);
71extern unsigned int line_write_room(struct tty_struct *tty);
72extern void line_throttle(struct tty_struct *tty);
73extern void line_unthrottle(struct tty_struct *tty);
74
75extern char *add_xterm_umid(char *base);

--- 21 unchanged lines hidden ---
68extern unsigned int line_chars_in_buffer(struct tty_struct *tty);
69extern void line_flush_buffer(struct tty_struct *tty);
70extern void line_flush_chars(struct tty_struct *tty);
71extern unsigned int line_write_room(struct tty_struct *tty);
72extern void line_throttle(struct tty_struct *tty);
73extern void line_unthrottle(struct tty_struct *tty);
74
75extern char *add_xterm_umid(char *base);

--- 21 unchanged lines hidden ---