/* A C-like file that gets preprocessed and therefore offers a way to include literal C code (using the common %{ %} mechanism). */ /* Begin literal code. */ %{ /* A long-winded multiline comment describing the function some_function. This comment drones on an on and on telling you every little thing the function does. Its long enough that you want hs-hide-level to hide it like a block, as advertised. */ static void some_function (void) { /* Some function body. */ } %}