function-params.txt 157 B

1234567
  1. int f(
  2. int a = 1,
  3. char* b = "2", // Line comment
  4. double c = 3.0, /* Block comment */
  5. ARRAY(int, 5) d,
  6. void* e __attribute__((unused))
  7. );