This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-mbse/mbsebbs/term.h
2009-05-15 22:01:56 +02:00

30 lines
783 B
C

#ifndef _TERM_H
#define _TERM_H
/* $Id: term.h,v 1.4 2007/02/25 20:28:13 mbse Exp $ */
void Enter(int);
char *pout_str(int, int, char *);
void pout(int, int, char *);
char *poutCR_str(int, int, char *);
void poutCR(int, int, char *);
char *poutCenter_str(int,int,char *);
void poutCenter(int,int,char *);
char *colour_str(int, int);
void colour(int, int);
char *Center_str(char *);
void Center(char *);
char *clear_str(void);
void clear(void);
char *locate_str(int, int);
void locate(int, int);
char *hLine_str(int);
char *fLine_str(int);
void fLine(int);
char *sLine_str(void);
void sLine(void);
void mvprintw(int, int, const char *, ...);
#endif