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

30 lines
739 B
C
Raw Normal View History

#ifndef _TERM_H
#define _TERM_H
2004-11-03 22:50:18 +00:00
/* $Id$ */
void Enter(int);
2007-02-25 20:28:00 +00:00
char *pout_str(int, int, char *);
void pout(int, int, char *);
2007-02-25 20:28:00 +00:00
char *poutCR_str(int, int, char *);
void poutCR(int, int, char *);
2007-02-25 20:28:00 +00:00
char *poutCenter_str(int,int,char *);
void poutCenter(int,int,char *);
2007-02-25 20:28:00 +00:00
char *colour_str(int, int);
void colour(int, int);
2007-02-25 20:28:00 +00:00
char *Center_str(char *);
void Center(char *);
2007-02-25 20:28:00 +00:00
char *clear_str(void);
void clear(void);
2007-02-25 20:28:00 +00:00
char *locate_str(int, int);
void locate(int, int);
2007-02-25 20:28:00 +00:00
char *hLine_str(int);
char *fLine_str(int);
void fLine(int);
2007-02-25 20:28:00 +00:00
char *sLine_str(void);
void sLine(void);
void mvprintw(int, int, const char *, ...);
#endif