/usr/include/paw/ntuple/kuip_interface.h is in libpawlib2-dev 1:2.14.04.dfsg.2-9.
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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | /*
* kuip_interface.h --
* Declare interface to KUIP.
*
* Original: 12-Jan-1996 16:08
*
* Author: Maarten Ballintijn <Maarten.Ballintijn@cern.ch>
*
* $Id: kuip_interface.h,v 1.8 1999/11/03 08:43:44 couet Exp $
*
* $Log: kuip_interface.h,v $
* Revision 1.8 1999/11/03 08:43:44 couet
* - reorganise the file to make it work on NT
*
* Revision 1.7 1999/07/02 12:54:49 couet
* - prototype for KUVECT
*
* Revision 1.6 1999/06/28 15:08:49 couet
* - use now cfortran.h in $CVSCOSRC
*
* Revision 1.5 1996/12/05 10:04:19 lecointe
* Two completely different things
* . add a _C to "paqcut" in "qp_cuts.c" to avoid duplicate symbol
* on VMS
* . Modified "expand_var_list" called by "do_nt_scan" in npantup.c.
* Removed the hand-made parser and use "ku_getl" to parse the list of
* variables to scan.
*
* Revision 1.4 1996/04/23 18:38:05 maartenb
* - Add RCS keywords
*
*
*/
#ifndef CERN_KUIP_INTERFACE
#define CERN_KUIP_INTERFACE
#include <paw/pilot.h>
#include <cfortran.h>
extern void ku_alfa( void );
extern char * ku_getc( void );
extern char * ku_getf( void );
extern int ku_geti( void );
extern char * ku_gets( void );
extern char * ku_getl( void );
extern int ku_npar( void );
extern char * ku_path( void );
extern char * ku_proc( const char* prompt, const char* dfault );
PROTOCCALLSFSUB3(KUVECT,kuvect,STRING,PINT,PINT)
#define KUVECT(VECNAM,LLOW,LHIGH) CCALLSFSUB3(KUVECT,kuvect,STRING,PINT,PINT,VECNAM,LLOW,LHIGH)
#if defined(CERNLIB_WINNT) || defined(CERNLIB_MSDOS) || defined(CERNLIB_VAXVMS)
extern int strcasecmp( const char* str1, const char* str2 );
extern int strncasecmp( const char* str1, const char* str2, size_t n );
#endif
#endif /* CERN_KUIP_INTERFACE */
|