/usr/include/complearn-1.0/complearn/complearn-external-file-compressor.h is in libcomplearn1-headers 1.1.7-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 57 58 59 60 61 62 63 64 65 66 67 68 69  | /* Generated by GOB (v2.0.15)   (do not edit directly) */
#include <glib.h>
#include <glib-object.h>
#include <glib/garray.h>
#include <libintl.h>
#include "real-compressor.h"
#include "complearn-real-compressor-adaptor.h"
#ifndef __COMPLEARN_EXTERNAL_FILE_COMPRESSOR_H__
#define __COMPLEARN_EXTERNAL_FILE_COMPRESSOR_H__
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/*
 * Type checking and casting macros
 */
#define COMPLEARN_TYPE_EXTERNAL_FILE_COMPRESSOR	(complearn_external_file_compressor_get_type())
#define COMPLEARN_EXTERNAL_FILE_COMPRESSOR(obj)	G_TYPE_CHECK_INSTANCE_CAST((obj), complearn_external_file_compressor_get_type(), CompLearnExternalFileCompressor)
#define COMPLEARN_EXTERNAL_FILE_COMPRESSOR_CONST(obj)	G_TYPE_CHECK_INSTANCE_CAST((obj), complearn_external_file_compressor_get_type(), CompLearnExternalFileCompressor const)
#define COMPLEARN_EXTERNAL_FILE_COMPRESSOR_CLASS(klass)	G_TYPE_CHECK_CLASS_CAST((klass), complearn_external_file_compressor_get_type(), CompLearnExternalFileCompressorClass)
#define COMPLEARN_IS_EXTERNAL_FILE_COMPRESSOR(obj)	G_TYPE_CHECK_INSTANCE_TYPE((obj), complearn_external_file_compressor_get_type ())
#define COMPLEARN_EXTERNAL_FILE_COMPRESSOR_GET_CLASS(obj)	G_TYPE_INSTANCE_GET_CLASS((obj), complearn_external_file_compressor_get_type(), CompLearnExternalFileCompressorClass)
/*
 * Main object structure
 */
#ifndef __TYPEDEF_COMPLEARN_EXTERNAL_FILE_COMPRESSOR__
#define __TYPEDEF_COMPLEARN_EXTERNAL_FILE_COMPRESSOR__
typedef struct _CompLearnExternalFileCompressor CompLearnExternalFileCompressor;
#endif
struct _CompLearnExternalFileCompressor {
	CompLearnRealCompressorAdaptor __parent__;
};
/*
 * Class definition
 */
typedef struct _CompLearnExternalFileCompressorClass CompLearnExternalFileCompressorClass;
struct _CompLearnExternalFileCompressorClass {
	CompLearnRealCompressorAdaptorClass __parent__;
};
/*
 * Public methods
 */
GType	complearn_external_file_compressor_get_type	(void);
GObject * 	complearn_external_file_compressor_new	(void);
GString * 	complearn_external_file_compressor_transform_with_external_command	(CompLearnExternalFileCompressor * ec,
					const char * cmd,
					const GString * inp,
					const char * infname,
					const char * outfname);
gboolean 	complearn_external_file_compressor_is_decompressible	(CompLearnRealCompressor * rc,
					const GString * input);
gboolean 	complearn_external_file_compressor_is_operational	(CompLearnRealCompressor * rc);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif
 |