This file is indexed.

/usr/include/fontembed/fontfile.h is in libfontembed-dev 1.0.52-0ubuntu1.

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
#ifndef _FONTFILE_H
#define _FONTFILE_H

#include "sfnt.h"

struct _FONTFILE {
  OTF_FILE *sfnt;
  // ??? *cff;
  char *stdname;
  union {
    int fobj;
    void *user;
  };
};

typedef struct _FONTFILE FONTFILE;

FONTFILE *fontfile_open_sfnt(OTF_FILE *otf);
FONTFILE *fontfile_open_std(const char *name);
void fontfile_close(FONTFILE *ff);

#endif