mirror of
https://github.com/rfivet/uemacs.git
synced 2024-12-18 07:16:23 -05:00
28 lines
717 B
C
28 lines
717 B
C
#ifndef _SEARCH_H_
|
|
#define _SEARCH_H_
|
|
|
|
#define MAGIC 1 /* include regular expression matching? */
|
|
|
|
#include "line.h"
|
|
|
|
int forwsearch( int f, int n) ;
|
|
int forwhunt( int f, int n) ;
|
|
int backsearch( int f, int n) ;
|
|
int backhunt( int f, int n) ;
|
|
int scanner( const char *patrn, int direct, int beg_or_end) ;
|
|
int eq( unsigned char bc, unsigned char pc) ;
|
|
void savematch( void) ;
|
|
void rvstrcpy( char *rvstr, char *str) ;
|
|
int sreplace( int f, int n) ;
|
|
int qreplace( int f, int n) ;
|
|
int delins( int dlength, char *instr, int use_meta) ;
|
|
int expandp( char *srcstr, char *deststr, int maxlength) ;
|
|
int boundry( struct line *curline, int curoff, int dir) ;
|
|
|
|
#if MAGIC
|
|
void mcclear( void) ;
|
|
void rmcclear( void) ;
|
|
#endif
|
|
|
|
#endif
|