2013-05-20 01:16:08 -04:00
|
|
|
#ifndef _BIND_H_
|
|
|
|
#define _BIND_H_
|
|
|
|
|
2013-09-23 09:30:31 -04:00
|
|
|
#define APROP 1 /* Add code for Apropos command */
|
|
|
|
|
|
|
|
#if APROP
|
|
|
|
int apro( int f, int n) ;
|
|
|
|
int strinc( char *source, char *sub) ;
|
|
|
|
#endif
|
|
|
|
|
2013-10-08 06:01:15 -04:00
|
|
|
/* Some global fuction declarations. */
|
|
|
|
typedef int (*fn_t)(int, int);
|
|
|
|
|
2013-05-20 01:16:08 -04:00
|
|
|
int help( int f, int n) ;
|
|
|
|
int deskey( int f, int n) ;
|
|
|
|
int bindtokey( int f, int n) ;
|
|
|
|
int unbindkey( int f, int n) ;
|
|
|
|
int unbindchar( int c) ;
|
|
|
|
int desbind( int f, int n) ;
|
|
|
|
int buildlist( int type, char *mstring) ;
|
|
|
|
unsigned int getckey( int mflag) ;
|
2015-01-16 08:12:27 -05:00
|
|
|
int startup( const char *fname) ;
|
2013-05-20 01:16:08 -04:00
|
|
|
void cmdstr( int c, char *seq) ;
|
|
|
|
fn_t getbind( int c) ;
|
|
|
|
fn_t fncmatch( char *) ;
|
|
|
|
unsigned int stock( char *keyname) ;
|
|
|
|
char *transbind( char *skey) ;
|
|
|
|
|
|
|
|
#endif
|