blob: 6665262683c83a37a30f278faef862863a6a5b02 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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 );
#endif
|