File: function-params.expect.txt

package info (click to toggle)
highlight.js 10.7.3%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,332 kB
  • sloc: javascript: 41,059; makefile: 157; python: 29; sh: 20
file content (7 lines) | stat: -rw-r--r-- 671 bytes parent folder | download
1
2
3
4
5
6
7
<span class="hljs-function"><span class="hljs-keyword">int</span> <span class="hljs-title">f</span><span class="hljs-params">(
    <span class="hljs-keyword">int</span> a = <span class="hljs-number">1</span>,
    <span class="hljs-keyword">char</span>* b = <span class="hljs-string">&quot;2&quot;</span>, <span class="hljs-comment">// Line comment</span>
    <span class="hljs-keyword">double</span> c = <span class="hljs-number">3.0</span>, <span class="hljs-comment">/* Block comment */</span>
    ARRAY(<span class="hljs-keyword">int</span>, <span class="hljs-number">5</span>) d,
    <span class="hljs-keyword">void</span>* e __attribute__((unused))
)</span></span>;