chiark
/
gitweb
/
~mdw
/
termux-packages
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Add TERMUX_PKG_CONFLICTS support
[termux-packages]
/
packages
/
libutil
/
pty.h
1
#ifndef _PTY_H
2
#define _PTY_H
3
4
#include <termios.h>
5
6
int openpty(int* amaster, int* aslave, char* name, struct termios* termp, struct winsize* winp);
7
8
int login_tty(int fd);
9
10
int forkpty(int* amaster, char* name, struct termios* termp, struct winsize* winp);
11
12
#endif