This file is indexed.

/usr/include/growl.h is in gntp-send 0.3.4-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
#ifndef _GROWL_H_
#define _GROWL_H_

#ifdef _WIN32
  #ifndef GROWL_STATIC
    #ifdef GROWL_DLL
      #define GROWL_EXPORT __declspec(dllexport)
    #else
      #define GROWL_EXPORT __declspec(dllimport)
    #endif
  #else
    #define GROWL_EXPORT
  #endif
#else
  #define GROWL_EXPORT
#endif /*_WIN32 */

#ifdef __cplusplus
extern "C" {
#endif


GROWL_EXPORT int growl( const char *const server,const char *const appname,const char *const notify,const char *const title, const char *const message ,
                                const char *const icon , const char *const password , const char *url );
GROWL_EXPORT int growl_tcp_notify( const char *const server,const char *const appname,const char *const notify,const char *const title, const char *const message ,
                                const char *const password, const char* const url, const char* const icon );
GROWL_EXPORT int growl_tcp_notify_with_data( const char *const server,const char *const appname,const char *const notify,const char *const title, const char *const message ,
                                const char *const password, const char* const url, const unsigned char* const icon_data, const long icon_size );
GROWL_EXPORT int growl_tcp_register( const char *const server , const char *const appname , const char **const notifications , const int notifications_count , const char *const password, const char *const icon );


GROWL_EXPORT int growl_udp( const char *const server,const char *const appname,const char *const notify,const char *const title, const char *const message ,
                                const char *const icon , const char *const password , const char *url );
GROWL_EXPORT int growl_udp_notify( const char *const server,const char *const appname,const char *const notify,const char *const title, const char *const message ,
                                const char *const password );
GROWL_EXPORT int growl_udp_register( const char *const server , const char *const appname , const char **const notifications , const int notifications_count , const char *const password  );


GROWL_EXPORT int growl_init(void);

GROWL_EXPORT void growl_shutdown(void);


#ifdef __cplusplus
}
#endif


#endif /* _GROWL_H_ */

/* vim:set et sw=2 ts=2 ai: */