#include "config.h" extern int Most_S_Opt; extern int Most_A_Opt; /* automatically choose -b if necessary */ extern int Most_V_Opt; /* display control chars */ extern int Most_B_Opt; /* display Binary File */ extern int Most_T_Opt; /* display tab as ^I-- valid only with V option */ extern int Most_D_Opt; /* delete file mode (see ':D') */ extern int Most_L_Opt; /* use ^L (formfeed) to clear screen */ extern int Most_W_Opt; /* Wrap mode */ extern int Most_K_Opt; /* Kanji mode */ extern int Most_Secure_Mode; extern int Most_Captive_Mode; extern char *Most_Program; extern int most(int, char **); extern char *Most_Global_Msg; extern int Most_Want_Exit; extern void most_initialize_most(void); extern void most_exit_most (void); extern void most_exit_error (char *); #define MOSTMALLOC most_malloc #define MOSTREALLOC most_realloc extern unsigned char *most_malloc(unsigned int); extern unsigned char *most_realloc(unsigned char *, unsigned int); extern int Most_Tab_Width; #ifdef VMS #ifndef isdigit #define isdigit(x) \ (((x >= '0') && (x <= '9')) ? 1 : 0) #endif #endif