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