This file is indexed.

/usr/include/paw/ntuple/qp_eval_op_bool.h is in libpawlib2-dev 1:2.14.04.dfsg.2-9.1build1.

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
/*
 *  template_op_bool.c  --
 *	Evaluation of logical operators
 *
 *  Original: 25-Nov-1994 17:03
 *
 *  Author:   Maarten Ballintijn <Maarten.Ballintijn@cern.ch>
 *
 *  $Id: qp_eval_op_bool.h,v 1.2 1996/04/23 18:38:21 maartenb Exp $
 *
 *  $Log: qp_eval_op_bool.h,v $
 *  Revision 1.2  1996/04/23 18:38:21  maartenb
 *  - Add RCS keywords
 *
 *
 */

	case FC_OR:
		r->u.bval = valv[0]->u.bval || valv[1]->u.bval;
		r->d = dim_new( D_BOOL );
		break;
	case FC_AND:
		r->u.bval = valv[0]->u.bval && valv[1]->u.bval;
		r->d = dim_new( D_BOOL );
		break;
	case FC_NOT:
		r->u.bval = ! valv[0]->u.bval;
		r->d = dim_new( D_BOOL );
		break;