mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-10 14:36:13 -05:00
30 lines
632 B
C
30 lines
632 B
C
#ifndef _EVAL_H_
|
|
#define _EVAL_H_
|
|
|
|
|
|
#define DEBUGM 1 /* $debug triggers macro debugging */
|
|
|
|
#if DEBUGM
|
|
int mdbugout( char *fmt, ...) ;
|
|
#endif
|
|
|
|
|
|
extern int macbug ; /* macro debuging flag */
|
|
extern int cmdstatus ; /* last command status */
|
|
extern int rval ; /* return value of a subprocess */
|
|
extern long envram ; /* # of bytes current in use by malloc */
|
|
|
|
int readfirst_f( void) ;
|
|
int is_it_cmd( char *token) ;
|
|
|
|
void varinit( void) ;
|
|
int setvar( int f, int n) ;
|
|
char *getval( char *token) ;
|
|
int stol( char *val) ;
|
|
char *mklower( char *str) ;
|
|
|
|
int clrmes( int f, int n) ;
|
|
int writemsg( int f, int n) ;
|
|
|
|
#endif
|