This file is indexed.

/usr/include/synce_ini.h is in libsynce0-dev 0.15-1.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
/* $Id: synce_ini.h 1022 2003-07-26 11:14:39Z twogood $ */
#ifndef __synce_ini_h__
#define __synce_ini_h__

typedef struct _SynceIni SynceIni;

SynceIni* synce_ini_new(const char* filename);
void synce_ini_destroy(SynceIni* ini);

int synce_ini_get_int(SynceIni* ini, const char* section, const char* key);
const char* synce_ini_get_string(SynceIni* ini, const char* section, const char* key);

#endif