mirror of
https://github.com/rfivet/uemacs.git
synced 2025-11-23 11:41:15 -05:00
Avoid various name clashes with curses and termcap headers
This allows us to include the proper headers, instead of declaring things (badly) by hand.
This commit is contained in:
17
efunc.h
17
efunc.h
@@ -28,8 +28,8 @@ extern int killpara(int f, int n);
|
||||
extern int wordcount(int f, int n);
|
||||
|
||||
/* line.c */
|
||||
extern int lfree(LINE *lp);
|
||||
extern int lchange(int flag);
|
||||
extern void lfree(LINE *lp);
|
||||
extern void lchange(int flag);
|
||||
extern int insspace(int f, int n);
|
||||
extern int linstr(char *instr);
|
||||
extern int linsert(int n, int c);
|
||||
@@ -40,13 +40,13 @@ extern int ldelete(long n, int kflag);
|
||||
extern char *getctext(void);
|
||||
extern int putctext(char *iline);
|
||||
extern int ldelnewline(void);
|
||||
extern int kdelete(void);
|
||||
extern void kdelete(void);
|
||||
extern int kinsert(int c);
|
||||
extern int yank(int f, int n);
|
||||
|
||||
/* window.c */
|
||||
extern int reposition(int f, int n);
|
||||
extern int refresh(int f, int n);
|
||||
extern int redraw(int f, int n);
|
||||
extern int nextwind(int f, int n);
|
||||
extern int prevwind(int f, int n);
|
||||
extern int mvdnwind(int f, int n);
|
||||
@@ -93,12 +93,12 @@ extern int getccol(int bflg);
|
||||
extern int setccol(int pos);
|
||||
extern int twiddle(int f, int n);
|
||||
extern int quote(int f, int n);
|
||||
extern int tab(int f, int n);
|
||||
extern int insert_tab(int f, int n);
|
||||
extern int detab(int f, int n);
|
||||
extern int entab(int f, int n);
|
||||
extern int trim(int f, int n);
|
||||
extern int openline(int f, int n);
|
||||
extern int newline(int f, int n);
|
||||
extern int insert_newline(int f, int n);
|
||||
extern int cinsert(void);
|
||||
extern int insbrace(int n, int c);
|
||||
extern int inspound(void);
|
||||
@@ -131,7 +131,7 @@ extern int ctrlg(int f, int n);
|
||||
extern int rdonly(void);
|
||||
extern int resterr(void);
|
||||
extern int nullproc(int f, int n);
|
||||
extern int meta(int f, int n);
|
||||
extern int metafn(int f, int n);
|
||||
extern int cex(int f, int n);
|
||||
extern int unarg(int f, int n);
|
||||
extern int cexit(int status);
|
||||
@@ -325,7 +325,7 @@ extern void rtfrmshell(void);
|
||||
extern int spawn(int f, int n);
|
||||
extern int execprg(int f, int n);
|
||||
extern int pipecmd(int f, int n);
|
||||
extern int filter(int f, int n);
|
||||
extern int filter_buffer(int f, int n);
|
||||
extern int sys(char *cmd);
|
||||
extern int shellprog(char *cmd);
|
||||
extern int execprog(char *cmd);
|
||||
@@ -356,7 +356,6 @@ extern int checknext(char chr, char *patrn, int dir);
|
||||
extern int scanmore(char *patrn, int dir);
|
||||
extern int match_pat(char *patrn);
|
||||
extern int promptpattern(char *prompt);
|
||||
extern int echochar(int c, int col);
|
||||
extern int get_char(void);
|
||||
extern int uneat(void);
|
||||
extern int reeat(int c);
|
||||
|
||||
Reference in New Issue
Block a user