This repository has been archived on 2026-05-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
LightTAM/include/tui.h
T
2025-04-02 19:07:38 +02:00

13 lines
217 B
C

#ifndef __TUI_H__
#define __TUI_H__
#include <ncurses.h>
#include <stdio.h>
#include <stdlib.h>
#define MIN_X_TERMINAL_SIZE 80
#define MIN_Y_TERMINAL_SIZE 30
void uartDialog(int terminal_x, int terminal_y);
#endif