'''Missing C Function Documentation''' The following is extracted from the test t/codingstd/c_function_docs.t. If the test fails it will give the C source file in single quotes, followed by the output for the test - prefixed by # It gives the number of functions missing documentation in the source file, then the function(s) missing documentation, and what the test expects to be there (Want:). The want: part gives what the documentation header is expects. of the form: {{{ # =item C some documentation (preferably, but not necessarily, wrapped at line 80) =back =cut */ function header here }}} The =over 4 is not required if a previous =over 4 exists without a =back which needs to be in the last entry. A series of related functions may be grouped together. For example: {{{ /* =over 4 =item C =item C ... Documentation for function 1 and function 2 ... ... =back =cut */ function 1 here ... }}}