This file is indexed.

/usr/include/skalibs/env.h is in skalibs-dev 0.47-1.

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
/* Public domain. */

#ifndef ENV_H
#define ENV_H

#include "gccattributes.h"
#include "stralloc.h"

extern unsigned int env_len (char const *const *) gccattr_pure ;
extern char const *env_get (char const *) gccattr_pure ;
extern char const *env_get2 (char const *const *, char const *) gccattr_pure ;
extern char const *ucspi_get (char const *) gccattr_pure ;
extern char const *ucspi_get_tmp (char const *, stralloc *) gccattr_pure ;
extern int env_addmodif (stralloc *, char const *, char const *) ;
extern int env_string (stralloc *, char const *const *, unsigned int) ;

#endif