/usr/include/kuip/kproto.h is in libpacklib1-dev 20061220+dfsg3-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*
* $Id: kproto.h,v 1.2 1998/08/25 12:47:56 mclareni Exp $
*
* $Log: kproto.h,v $
* 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
|