aboutsummaryrefslogtreecommitdiff
path: root/basic_curses.h
blob: 00be967b5dc24a591e33eb5a3cd4f4dfef494aa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

#ifndef BASIC_CURSES_H
#define BASIC_CURSES_H

#include "main.h"

void printfc(char* fstrc, int max_length, ...);

void printc(char* fstrc, int max_length);
void mvprintc(int x, int y, char* fstrc, int max_length);


#define mvprintfc( x, y, fstrc, max, ...) (move((y),(x)),printfc(fstrc, max, __VA_ARGS__ ))

#endif