This file is indexed.

/usr/include/paw/ntuple/mstr.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
/*
 *  mstr.h  -  Declare 'marked' string routines
 *	       used by the parser.
 *
 *  Original: 22-Jun-1994 00:52
 *
 *  Author:   Maarten Ballintijn <Maarten.Ballintijn@cern.ch>
 *
 *  $Id: mstr.h,v 1.2 1996/04/23 18:38:06 maartenb Exp $
 *
 *  $Log: mstr.h,v $
 *  Revision 1.2  1996/04/23 18:38:06  maartenb
 *  - Add RCS keywords
 *
 *
 */

#ifndef _mstr_h
#define _mstr_h

char *
mstr_new( char *const s );

char *
mstr_merge( char *s, ... );

void
mstr_del( char *const s );

void
mstr_mark( char *const s );

void
mstr_release( char *const s );

void
mstr_del_all( void );

void
mstr_reset( void );

#endif	/*	_mstr_h	*/