This file is indexed.

/usr/share/doc/mp3blaster/examples/charmap/chargen.c is in mp3blaster 1:3.2.5-3ubuntu1.

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
#include <stdio.h>

main()
{
    int i;
    for (i=0;i<256;i++)
        printf("%c", i);
}