presentations/highlight-js/test/markup/cpp/function-params.txt

7 lines
157 B
Text

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