2013-05-20 01:16:08 -04:00
|
|
|
#ifndef _EFUNC_H_
|
|
|
|
#define _EFUNC_H_
|
|
|
|
|
2013-05-19 05:36:24 -04:00
|
|
|
/* efunc.h
|
2005-05-31 11:50:56 -04:00
|
|
|
*
|
2013-05-19 05:36:24 -04:00
|
|
|
* Function declarations and names.
|
2005-05-31 11:50:56 -04:00
|
|
|
*
|
2013-05-19 05:36:24 -04:00
|
|
|
* This file list all the C code functions used and the names to use
|
|
|
|
* to bind keys to them. To add functions, declare it here in both the
|
2010-08-26 12:20:25 -04:00
|
|
|
* extern function list and the name binding table.
|
2005-05-31 11:50:56 -04:00
|
|
|
*
|
2013-05-19 05:36:24 -04:00
|
|
|
* modified by Petri Kutvonen
|
2005-05-31 11:50:56 -04:00
|
|
|
*/
|
|
|
|
|
2010-08-26 12:20:25 -04:00
|
|
|
/* External function declarations. */
|
2005-05-31 11:50:56 -04:00
|
|
|
|
2005-10-01 01:52:45 -04:00
|
|
|
/* word.c */
|
2013-05-20 01:16:08 -04:00
|
|
|
#include "word.h"
|
2005-05-31 11:50:56 -04:00
|
|
|
|
2005-10-01 01:52:45 -04:00
|
|
|
/* window.c */
|
2013-05-18 02:43:13 -04:00
|
|
|
#include "window.h"
|
2005-05-31 11:50:56 -04:00
|
|
|
|
2005-10-01 01:52:45 -04:00
|
|
|
/* basic.c */
|
2013-05-18 20:13:48 -04:00
|
|
|
#include "basic.h"
|
2005-05-31 11:50:56 -04:00
|
|
|
|
2005-10-01 01:52:45 -04:00
|
|
|
/* random.c */
|
2013-05-20 01:16:08 -04:00
|
|
|
#include "random.h"
|
2005-05-31 11:50:56 -04:00
|
|
|
|
2005-10-01 01:52:45 -04:00
|
|
|
/* main.c */
|
2013-05-18 20:13:48 -04:00
|
|
|
#include "main.h"
|
2005-10-01 01:52:45 -04:00
|
|
|
|
|
|
|
/* display.c */
|
2013-05-18 01:40:11 -04:00
|
|
|
#include "display.h"
|
2005-10-01 01:52:45 -04:00
|
|
|
|
|
|
|
/* region.c */
|
2013-05-20 01:16:08 -04:00
|
|
|
#include "region.h"
|
2005-10-01 01:52:45 -04:00
|
|
|
|
|
|
|
/* posix.c */
|
2013-05-20 03:16:19 -04:00
|
|
|
#include "termio.h"
|
2005-10-01 01:52:45 -04:00
|
|
|
|
|
|
|
/* input.c */
|
2013-05-18 02:21:28 -04:00
|
|
|
#include "input.h"
|
2005-10-01 01:52:45 -04:00
|
|
|
|
|
|
|
/* bind.c */
|
2013-05-20 01:16:08 -04:00
|
|
|
#include "bind.h"
|
2005-10-01 01:52:45 -04:00
|
|
|
|
|
|
|
/* buffer.c */
|
2013-05-20 01:16:08 -04:00
|
|
|
#include "buffer.h"
|
2005-10-01 01:52:45 -04:00
|
|
|
|
|
|
|
/* search.c */
|
2013-05-20 01:16:08 -04:00
|
|
|
#include "search.h"
|
2005-10-01 01:52:45 -04:00
|
|
|
|
|
|
|
/* isearch.c */
|
2013-05-20 01:16:08 -04:00
|
|
|
#include "isearch.h"
|
2005-10-01 01:52:45 -04:00
|
|
|
|
|
|
|
/* eval.c */
|
2013-05-20 01:16:08 -04:00
|
|
|
#include "eval.h"
|
2005-10-01 01:52:45 -04:00
|
|
|
|
2013-05-24 23:57:27 -04:00
|
|
|
#if BSD | SVR4
|
2005-10-01 01:52:45 -04:00
|
|
|
/* lock.c */
|
2013-05-20 01:16:08 -04:00
|
|
|
#include "lock.h"
|
2005-10-01 01:52:45 -04:00
|
|
|
|
2013-05-24 23:57:27 -04:00
|
|
|
#if (FILOCK && BSD) || SVR4
|
2005-10-01 03:56:15 -04:00
|
|
|
/* pklock.c */
|
2013-05-20 01:16:08 -04:00
|
|
|
#include "pklock.h"
|
2013-05-24 23:57:27 -04:00
|
|
|
#endif
|
|
|
|
#endif
|
2013-05-20 01:16:08 -04:00
|
|
|
|
|
|
|
#endif
|