11 lines
296 B
C
11 lines
296 B
C
#ifndef _LIBTERMINAL_TERMINAL_TERMINAL_H
|
|
#define _LIBTERMINAL_TERMINAL_TERMINAL_H
|
|
|
|
#include <stddef.h>
|
|
#include <terminal_device.h>
|
|
|
|
/* Print a string onto a graphical terminal. Prints len chars */
|
|
void terminal_print (const char* string, size_t len);
|
|
|
|
#endif // _LIBTERMINAL_TERMINAL_TERMINAL_H
|