mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-10 14:36:13 -05:00
12 lines
189 B
C
12 lines
189 B
C
#ifndef __ISEARCH_H__
|
|
#define __ISEARCH_H__
|
|
|
|
#define ISRCH 1 /* Incremental searches like ITS EMACS */
|
|
|
|
#if ISRCH
|
|
int risearch( int f, int n) ;
|
|
int fisearch( int f, int n) ;
|
|
#endif
|
|
|
|
#endif
|