mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-05 03:47:17 -05:00
uemacs: Move function declarations from edef.h to efunc.h.
Signed-off-by: Thiago Farina <tfransosi@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
da3d470b8d
commit
18342f6246
4
edef.h
4
edef.h
@ -106,10 +106,6 @@ extern struct window *wheadp; /* Head of list of windows */
|
||||
extern struct buffer *bheadp; /* Head of list of buffers */
|
||||
extern struct buffer *blistp; /* Buffer for C-X C-B */
|
||||
|
||||
/* Lookup a buffer by name. */
|
||||
extern struct buffer *bfind(char *bname, int cflag, int bflag);
|
||||
extern struct window *wpopup(void); /* Pop up window creation. */
|
||||
extern struct line *lalloc(int); /* Allocate a line. */
|
||||
extern char sres[NBUFN]; /* Current screen resolution. */
|
||||
extern char pat[]; /* Search pattern. */
|
||||
extern char tap[]; /* Reversed pattern array. */
|
||||
|
5
efunc.h
5
efunc.h
@ -42,6 +42,7 @@ extern int ldelnewline(void);
|
||||
extern void kdelete(void);
|
||||
extern int kinsert(int c);
|
||||
extern int yank(int f, int n);
|
||||
extern struct line *lalloc(int); /* Allocate a line. */
|
||||
|
||||
/* window.c */
|
||||
extern int reposition(int f, int n);
|
||||
@ -64,6 +65,8 @@ extern int newsize(int f, int n);
|
||||
extern int newwidth(int f, int n);
|
||||
extern int getwpos(void);
|
||||
extern void cknewwindow(void);
|
||||
extern struct window *wpopup(void); /* Pop up window creation. */
|
||||
|
||||
|
||||
/* basic.c */
|
||||
extern int gotobol(int f, int n);
|
||||
@ -217,6 +220,8 @@ extern int addline(char *text);
|
||||
extern int anycb(void);
|
||||
extern int bclear(struct buffer *bp);
|
||||
extern int unmark(int f, int n);
|
||||
/* Lookup a buffer by name. */
|
||||
extern struct buffer *bfind(char *bname, int cflag, int bflag);
|
||||
|
||||
/* file.c */
|
||||
extern int fileread(int f, int n);
|
||||
|
Loading…
Reference in New Issue
Block a user