This file is indexed.

/usr/include/cctools/parrot_client.h is in coop-computing-tools-dev 4.0-1ubuntu1.

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
/*
Copyright (C) 2008- The University of Notre Dame
This software is distributed under the GNU General Public License.
See the file COPYING for details.
*/

#ifndef PARROTCLIENT_H_
#define PARROTCLIENT_H_

#include <stdlib.h>
#include <sys/stat.h>

#include "pfs_search.h"
#include "int_sizes.h"

int parrot_whoami( const char *path, char *buf, int size );
int parrot_locate( const char *path, char *buf, int size );
int parrot_getacl( const char *path, char *buf, int size );
int parrot_setacl( const char *path, const char *subject, const char *rights );
int parrot_md5( const char *filename, unsigned char *digest );
int parrot_cp( const char *source, const char *dest );
int parrot_mkalloc( const char *path, INT64_T size, mode_t mode );
int parrot_lsalloc( const char *path, char *alloc_path, INT64_T *total, INT64_T *inuse );
int parrot_timeout( const char *time );
SEARCH *parrot_opensearch(const char *path, const char *pattern, int flags);
struct searchent *parrot_readsearch(SEARCH *search);
int parrot_closesearch(SEARCH *search);

#endif