This file is indexed.

/usr/share/enscript/hl/c_comment.st is in enscript 1.6.5.90-3.

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
/*
 * Read one C-comment.  C-styled comments are needed in many
 * languages.  Therefore it is implemented in a separate file to ease
 * its reusing.
 */

state c_comment extends Highlight
{
  /\*\\\// {
    language_print ($0);
    return;
  }
}


/*
Local variables:
mode: c
End:
*/