2013-09-23 20:55:59 +08:00
|
|
|
#ifndef __ISEARCH_H__
|
|
|
|
#define __ISEARCH_H__
|
|
|
|
|
|
|
|
#define ISRCH 1 /* Incremental searches like ITS EMACS */
|
|
|
|
|
|
|
|
#if ISRCH
|
2013-05-20 13:16:08 +08:00
|
|
|
int risearch( int f, int n) ;
|
|
|
|
int fisearch( int f, int n) ;
|
2013-09-23 20:55:59 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|