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

8 lines
157 B
Text
Raw Permalink Normal View History

2018-12-07 08:48:05 -06:00
int f(
int a = 1,
char* b = "2", // Line comment
double c = 3.0, /* Block comment */
ARRAY(int, 5) d,
void* e __attribute__((unused))
);