This file is indexed.

/usr/lib/ocaml/camlimages/blend.mli is in libcamlimages-ocaml-dev 1:4.2.0-1build1.

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
type mode =
   | Normal | Multiply | Screen | Overlay (* | SoftLight | HardLight *)
   | ColorDodge | ColorBurn | Darken | Lighten | Difference
   | Exclusion (* | Luminosity | Color | Saturation | Hue *)

val blend : mode -> int -> int -> int
    (* [blend blendmode src dst] *)

val f : mode -> int -> Color.rgb -> Color.rgb -> Color.rgb
    (* [f blendmode srcalpha src dst] 8bit depth *)
    (* bug: no destination alpha support *)