Files
mop3/libterminal/terminal.h
kamkow1 a346a5667c
All checks were successful
Build documentation / build-and-deploy (push) Successful in 1m59s
Implement TERMINAL_DIMENSIONS op for the terminal device, CE add terminfo command
2026-03-05 16:42:02 +01:00

14 lines
374 B
C

#ifndef _LIBTERMINAL_TERMINAL_TERMINAL_H
#define _LIBTERMINAL_TERMINAL_TERMINAL_H
#include <devices.h>
#include <stddef.h>
/* Print a string onto a graphical terminal. Prints len chars */
void terminal_print (const char* string, size_t len);
/* Get terminal dimensions */
void terminal_dimensions (size_t* cols, size_t* rows);
#endif // _LIBTERMINAL_TERMINAL_TERMINAL_H