mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-05 03:47:17 -05:00
26 lines
621 B
C
26 lines
621 B
C
#ifndef _BIND_H_
|
|
#define _BIND_H_
|
|
|
|
#include "edef.h"
|
|
|
|
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 apro( int f, int n) ;
|
|
int buildlist( int type, char *mstring) ;
|
|
int strinc( char *source, char *sub) ;
|
|
unsigned int getckey( int mflag) ;
|
|
int startup( char *sfname) ;
|
|
char *flook( const char *fname, int hflag) ;
|
|
void cmdstr( int c, char *seq) ;
|
|
fn_t getbind( int c) ;
|
|
char *getfname( fn_t) ;
|
|
fn_t fncmatch( char *) ;
|
|
unsigned int stock( char *keyname) ;
|
|
char *transbind( char *skey) ;
|
|
|
|
#endif
|