/usr/include/geotiff/geo_incode_defs.h is in libgeotiff-dev 1.4.1-2.
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 | /*
* This file is included by the CSV ".c" files in the csv directory.
*
* copyright (c) 1995 Niles D. Ritter
*
* Permission granted to use this software, so long as this copyright
* notice accompanies any products derived therefrom.
*/
#include <stdio.h>
/* Data structures */
typedef const char * datafile_rows_t;
typedef struct datafile_s {
const char *name;
const datafile_rows_t **rows;
} datafile_t;
|