This file is indexed.

/usr/include/openbabel-2.0/openbabel/locale.h is in libopenbabel-dev 2.3.2+dfsg-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
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
/**********************************************************************
locale.h - Handle internal numeric locale issues -- parse data in "C"

Copyright (C) 2008 by Geoffrey R. Hutchison

This file is part of the Open Babel project.
For more information, see <http://openbabel.org/>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation version 2 of the License.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
***********************************************************************/

#ifndef OB_LOCALE_H
#define OB_LOCALE_H

#include <locale>
#include <openbabel/babelconfig.h>

#ifndef OBERROR
#define OBERROR
#endif

namespace OpenBabel
{
  class OBLocalePrivate;

  // more detailed descriptions and documentation in locale.cpp
  //! \brief Handle the locale for numeric data parsing
  class OBERROR OBLocale {
  public:

    OBLocale();
    ~OBLocale();

    void SetLocale();
    void RestoreLocale();

  protected:
    OBLocalePrivate* d;
  };

  //global definitions
  //! Global OBLocale for setting and restoring locale information
  OBERROR extern  OBLocale   obLocale;

} // namespace OpenBabel
#endif // OB_LOCALE_H

//! \file locale.h
//! \brief Handle internal numeric locale issues -- parse data in "C"