mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-11 02:31:04 +00:00
19 lines
446 B
C
19 lines
446 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2021, Gunnar Beutner <gbeutner@serenityos.org>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <sys/cdefs.h>
|
||
|
|
#include <termios.h>
|
||
|
|
|
||
|
|
__BEGIN_DECLS
|
||
|
|
|
||
|
|
int openpty(int* amaster, int* aslave, char* name, const struct termios* termp, const struct winsize* winp);
|
||
|
|
pid_t forkpty(int* amaster, int* aslave, char* name, const struct termios* termp, const struct winsize* winp);
|
||
|
|
int login_tty(int fd);
|
||
|
|
|
||
|
|
__END_DECLS
|