blob: 95c0737d5900df085a3b218dd8ec09ffadf21227 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* Copyright (C) 2021-2021 Fuwn
* SPDX-License-Identifier: GPL-3.0-only */
#ifndef VIV_UI_H
#define VIV_UI_H
#pragma once
#include <curses.h>
void UI_initialise(char *[], int);
/* void UI_free(void); */
/* void UI_print_in_middle(WINDOW *, int, int, int, char *, chtype); */
#endif /* VIV_UI_H */
|