1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
/*
* $Id: kproto.h,v 1.1.1.1 2004/02/17 14:24:51 brock Exp $
*
* $Log: kproto.h,v $
* Revision 1.1.1.1 2004/02/17 14:24:51 brock
* Mn_Fit in CVS
*
* Revision 1.1 2004/02/16 15:35:09 brock
* CERNLIB include files that Mn_Fit needs.
*
* Revision 1.2 1998/08/25 12:47:56 mclareni
* QMGLIBC changes for Linux RH51
*
* Revision 1.1.1.1 1996/03/08 15:33:01 mclareni
* Kuip
*
*/
extern char* clean_word( char* );
extern char* format_prompt( const char* );
#if defined(CERNLIB_QMGLIBC)
extern char* getline2( const char* );
#else
extern char* getline( const char* );
#endif
extern void gl_config( const char*, int );
extern void gl_histadd( const char* );
extern void gl_setwidth( int );
extern char* input_line( const char*, char );
extern void leave_kuip(void);
extern int len_alias( const char*, int );
extern int len_sysfun( const char* );
extern int len_vector( const char* );
extern char* quote_string( char*, int );
extern void reset_break(void);
extern char* split_at_semicolon( char* );
extern void k_parse_args( const char*, char**, int* );
#ifndef vms
extern void signal_handler( int );
#else
extern int signal_handler( const void*, const void* );
extern int control_C_ast( int );
#endif
|