/usr/include/spooles/Utilities/PIV.h is in libspooles-dev 2.2-10build1.
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 | /* PIV.h */
/*--------------------------------------------------------------------*/
/*
--------------------------------------------
purpose -- to free a pointer to int vector
must have been created by PIVinit
created -- 95sep22, cca
--------------------------------------------
*/
void
PIVfree (
int **p_ivec
) ;
/*--------------------------------------------------------------------*/
/*
---------------------------------------------
purpose -- to allocate and initialize to NULL
a vector of pointer to int
created -- 95sep22, cca
---------------------------------------------
*/
int **
PIVinit (
int size
) ;
/*--------------------------------------------------------------------*/
/*
-------------------------------------
purpose -- to set up a pointer vector
created -- 95sep22, cca
-------------------------------------
*/
void
PIVsetup (
int length,
int sizes[],
int ivec[],
int *p_ivec[]
) ;
/*--------------------------------------------------------------------*/
/*
-----------------------------------
purpose -- to copy a pointer vector
created -- 95sep22, cca
-----------------------------------
*/
void
PIVcopy (
int length,
int *p_ivec1[],
int *p_ivec2[]
) ;
/*--------------------------------------------------------------------*/
|