mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-12 07:36:15 -05:00
29 lines
639 B
C
29 lines
639 B
C
#ifndef _BIND_H_
|
|
#define _BIND_H_
|
|
|
|
#include "edef.h"
|
|
|
|
#define APROP 1 /* Add code for Apropos command */
|
|
|
|
#if APROP
|
|
int apro( int f, int n) ;
|
|
int strinc( char *source, char *sub) ;
|
|
#endif
|
|
|
|
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) ;
|
|
int startup( char *sfname) ;
|
|
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
|