2020-01-18 09:38:21 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
|
2018-11-05 18:16:00 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
|
|
|
|
|
__BEGIN_DECLS
|
|
|
|
|
|
|
|
|
|
extern char PC;
|
|
|
|
|
extern char* UP;
|
|
|
|
|
extern char* BC;
|
|
|
|
|
|
2022-04-01 20:58:27 +03:00
|
|
|
int tgetent(char* bp, char const* name);
|
|
|
|
|
int tgetflag(char const* id);
|
|
|
|
|
int tgetnum(char const* id);
|
|
|
|
|
char* tgetstr(char const* id, char** area);
|
|
|
|
|
char* tgoto(char const* cap, int col, int row);
|
|
|
|
|
int tputs(char const* str, int affcnt, int (*putc)(int));
|
2018-11-11 15:36:40 +01:00
|
|
|
|
2018-11-05 18:16:00 +01:00
|
|
|
__END_DECLS
|