/*	LEDIT.H */

int  inkey(int mode);
int  getch(int mode);
void Beep(void);
void mid(char *str, int start, int len, char *midstr);
void setctype(char *in, char *ex);
int  LineEdit(int xp, int yp, char *str, int max, int f, int b);
void char_set(int mode);
void backward();
void forward();
void delete();
void csr_posit(int x, int y);
void put_str(int x,int y,char *buf);
void put_chr(int x,int y,char chr);

#define csr_fwd()  cprintf("\x1B[1C");
#define csr_back() cprintf("\x1B[1D");
