mirror of
https://github.com/rfivet/uemacs.git
synced 2024-12-18 07:16:23 -05:00
Renaud Fivet
b4d69118f5
Finish tagging BBINDABLE functions. Modify forward-character to handle combined Unicode. Bump up version number and set default program name as 'ue'.
18 lines
309 B
C
18 lines
309 B
C
/* flook.h -- */
|
|
#ifndef _FLOOK_H_
|
|
#define _FLOOK_H_
|
|
|
|
#include "retcode.h" /* boolean */
|
|
|
|
#define rcfname pathname[ 0]
|
|
#define hlpfname pathname[ 1]
|
|
|
|
extern const char *pathname[] ;
|
|
|
|
|
|
boolean fexist( const char *fname) ;
|
|
char *flook( const char *fname, boolean hflag) ;
|
|
|
|
#endif
|
|
/* end of flook.h */
|