/usr/share/doc/cairo-5c/events.5c is in cairo-5c 1.4.
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 | autoimport Cairo;
cairo_t cr = new ();
file f = open_event (cr);
while (!File::end (f))
printf ("%s\n", File::fgets (f));
|