|
|
|
|
|
by azdavis
2120 days ago
|
|
This is an old way of writing the type of parameters to a function. I believe the modern equivalent is char* combine(char* s, char* t) { ... }
which means combine takes in two pointers-to-char and returns a pointer-to-char.Opinions differ on whether the * should be next to the type or next to the identifier. I prefer putting it next to the type. |
|
I mean, short of enabling declarations like:
But I have long since found the tradeoff to be worth the syntactic clarity.