blob: 3d9243f1a1726076232d483327b15e4c28a86a0a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef __LIBTERM_PRINT_UTILS_H
#define __LIBTERM_PRINT_UTILS_H
#include <stdio.h>
#include <stdlib.h>
#include "screen_modes.h"
#include "term.h"
int term_fprint( screen_mode_e, FILE* );
int term_print( term_screen*, const char*, size_t, int, int );
int term_getc( term_screen* );
#endif
|