This file is indexed.

/usr/include/CLAM/strfuncs.h is in libclam-dev 1.4.0-5.2.

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
#ifndef __strfuncs__
#define __strfuncs__

/* a more efficient way of catting strings than strcat */

/* set the ptr where we will be adding, and the max. length */
void strstart(char* tgt,int n);

char* stradd(const char* a);

char* stradd_range( const char* begin, const char* end );

void str_end(void);

/* Converts a given path from the UNIX way: a/b/c into 
 * Windows' way, namely a\b\c
 */
void winstyle(char* str);

#endif