This file is indexed.

/usr/include/falcon/filestat.h is in falconpl-dev 0.9.6.9-git20120606-2.1+b1.

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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*
   FALCON - The Falcon Programming Language.
   FILE: filestat.h

   Directory and file specific statistic accounting
   -------------------------------------------------------------------
   Author: Giancarlo Niccolai
   Begin: gio giu 21 2007

   -------------------------------------------------------------------
   (C) Copyright 2004: the FALCON developers (see list in AUTHORS file)

   See LICENSE file for licensing details.
*/

/** \file
   Directory and file specific statistic accounting
*/

#ifndef flc_filestat_H
#define flc_filestat_H

#include <falcon/setup.h>
#include <falcon/types.h>
#include <falcon/falcondata.h>

namespace Falcon {

class String;
class TimeStamp;
class MemPool;

/** Multiplatform statistics on files. */
class FALCON_DYN_CLASS FileStat: public FalconData
{
public:
   typedef enum {
      t_notFound = -1,
      t_unknown = 0,
      t_normal = 1,
      t_dir = 2,
      t_pipe = 3,
      t_link = 4,
      t_device = 5,
      t_socket = 6
   } e_fileType;

   e_fileType m_type;
   int64 m_size;
   int32 m_owner;
   int32 m_group;
   int32 m_access;
   /** Dos attribs */
   int32 m_attribs;
   /** Creation or status change */
   TimeStamp *m_ctime;
   /** Last write time */
   TimeStamp *m_mtime;
   /** Last access time */
   TimeStamp *m_atime;

   FileStat();
   FileStat( const FileStat &other );
   virtual ~FileStat();

   virtual FileStat * clone() const;
   virtual void gcMark( uint32 mark ) {}
};

}

#endif

/* end of filestat.h */