Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../usr/include
File: pty.h
/* Functions for pseudo TTY handling.
[0] Fix | Delete
Copyright (C) 1996-2018 Free Software Foundation, Inc.
[1] Fix | Delete
This file is part of the GNU C Library.
[2] Fix | Delete
[3] Fix | Delete
The GNU C Library is free software; you can redistribute it and/or
[4] Fix | Delete
modify it under the terms of the GNU Lesser General Public
[5] Fix | Delete
License as published by the Free Software Foundation; either
[6] Fix | Delete
version 2.1 of the License, or (at your option) any later version.
[7] Fix | Delete
[8] Fix | Delete
The GNU C Library is distributed in the hope that it will be useful,
[9] Fix | Delete
but WITHOUT ANY WARRANTY; without even the implied warranty of
[10] Fix | Delete
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
[11] Fix | Delete
Lesser General Public License for more details.
[12] Fix | Delete
[13] Fix | Delete
You should have received a copy of the GNU Lesser General Public
[14] Fix | Delete
License along with the GNU C Library; if not, see
[15] Fix | Delete
<http://www.gnu.org/licenses/>. */
[16] Fix | Delete
[17] Fix | Delete
#ifndef _PTY_H
[18] Fix | Delete
#define _PTY_H 1
[19] Fix | Delete
[20] Fix | Delete
#include <features.h>
[21] Fix | Delete
[22] Fix | Delete
struct termios;
[23] Fix | Delete
struct winsize;
[24] Fix | Delete
[25] Fix | Delete
#include <termios.h>
[26] Fix | Delete
#include <sys/ioctl.h>
[27] Fix | Delete
[28] Fix | Delete
[29] Fix | Delete
__BEGIN_DECLS
[30] Fix | Delete
[31] Fix | Delete
/* Create pseudo tty master slave pair with NAME and set terminal
[32] Fix | Delete
attributes according to TERMP and WINP and return handles for both
[33] Fix | Delete
ends in AMASTER and ASLAVE. */
[34] Fix | Delete
extern int openpty (int *__amaster, int *__aslave, char *__name,
[35] Fix | Delete
const struct termios *__termp,
[36] Fix | Delete
const struct winsize *__winp) __THROW;
[37] Fix | Delete
[38] Fix | Delete
/* Create child process and establish the slave pseudo terminal as the
[39] Fix | Delete
child's controlling terminal. */
[40] Fix | Delete
extern int forkpty (int *__amaster, char *__name,
[41] Fix | Delete
const struct termios *__termp,
[42] Fix | Delete
const struct winsize *__winp) __THROW;
[43] Fix | Delete
[44] Fix | Delete
__END_DECLS
[45] Fix | Delete
[46] Fix | Delete
#endif /* pty.h */
[47] Fix | Delete
[48] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function