This file is indexed.

/usr/share/systemtap/runtime/vsprintf.h is in systemtap-common 2.6-0.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
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* -*- linux-c -*- 
 * Copyright (C) 2011 Red Hat Inc.
 *
 * This file is part of systemtap, and is free software.  You can
 * redistribute it and/or modify it under the terms of the GNU General
 * Public License (GPL); either version 2, or (at your option) any
 * later version.
 */

#ifndef _STP_VSPRINTF_H_
#define _STP_VSPRINTF_H_

enum print_flag { STP_ZEROPAD=1, STP_SIGN=2, STP_PLUS=4, STP_SPACE=8,
		  STP_LEFT=16, STP_SPECIAL=32, STP_LARGE=64 };

static char *number(char * buf, char * end, uint64_t num, int base,
		    int size, int precision, enum print_flag type);
static int number_size(uint64_t num, int base, int size, int precision,
		       enum print_flag type);

static char *_stp_vsprint_char(char * str, char * end, char c,
			       int width, enum print_flag flags);
static int _stp_vsprint_char_size(char c, int width, enum print_flag flags);

static char *_stp_vsprint_memory(char * str, char * end, const char * ptr,
				 int width, int precision,
				 char format, enum print_flag flags);
static int _stp_vsprint_memory_size(const char * ptr, int width, int precision,
				    char format, enum print_flag flags);

static char *_stp_vsprint_binary(char * str, char * end, int64_t num,
				 int width, int precision,
				 enum print_flag flags);
static int _stp_vsprint_binary_size(int64_t num, int width, int precision);

static int _stp_vsnprintf(char *buf, size_t size, const char *fmt,
			  va_list args);

#include "transport/transport.h"

#endif /* _STP_VSPRINTF_H_ */