This file is indexed.

/usr/include/paw/ntuple/str.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
66
67
68
69
/*
 *  str.h  --
 *	declare str routines
 *
 *  Original: 22-Jun-1994 00:52
 *
 *  Author:   Maarten Ballintijn <Maarten.Ballintijn@cern.ch>
 *
 *  $Id: str.h,v 1.8 1996/04/23 18:39:12 maartenb Exp $
 *
 *  $Log: str.h,v $
 *  Revision 1.8  1996/04/23 18:39:12  maartenb
 *  - Add RCS keywords
 *
 *
 *  $Id: str.h,v 1.8 1996/04/23 18:39:12 maartenb Exp $
 *
 *  $Log: str.h,v $
 *  Revision 1.8  1996/04/23 18:39:12  maartenb
 *  - Add RCS keywords
 *
 *  Revision 1.7  1996/04/23 18:18:51  maartenb
 *  - Add proper multiple include guard.
 *
 *  Revision 1.6  1996/04/23 18:17:00  maartenb
 *  - Typographical fixes
 *
 *  - RCS keywords
 *
 *
 */

#ifndef CERN_STR
#define CERN_STR

#include	<stdarg.h>


char *
str_new( const char * const s );

char *
str_alloc( const int len );

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

char *
str_vmerge( char * s, va_list ap );

void
str_del( char * s );

char *
str_toupper( const char * const s );

char *
str_tolower( const char * const s );

int
str_atoi( const char * const s, const int base, int * valp );

int
str_atol( const char * const s, const int base, long * valp );

char *
str_subrange( const char * const s, int from, int len );

#endif	/*	CERN_STR	*/