mirror of
https://github.com/rfivet/uemacs.git
synced 2024-12-18 15:26:23 -05:00
24 lines
643 B
C
24 lines
643 B
C
#ifndef _INPUT_H_
|
|
#define _INPUT_H_
|
|
|
|
#include "edef.h"
|
|
|
|
extern int kbdm[] ; /* Holds kayboard macro data */
|
|
extern int *kbdptr ; /* current position in keyboard buf */
|
|
extern int *kbdend ; /* ptr to end of the keyboard */
|
|
|
|
int mlyesno( const char *prompt) ;
|
|
int mlreply( const char *prompt, char *buf, int nbuf) ;
|
|
int mlreplyt( const char *prompt, char *buf, int nbuf, int eolchar) ;
|
|
int ectoc( int c) ;
|
|
int ctoec( int c) ;
|
|
fn_t getname( void) ;
|
|
int tgetc( void) ;
|
|
int get1key( void) ;
|
|
int getcmd( void) ;
|
|
int getstring( const char *prompt, char *buf, int nbuf, int eolchar) ;
|
|
void outstring( char *s) ;
|
|
void ostring( char *s) ;
|
|
|
|
#endif
|