I've seen a few function definitions like this recently while playing with GNU Bison:
static VALUE
ripper_pos(self)
VALUE self;
{
//code here
}
Why is the type of self outside of the parenthesis? Is this valid C?
|
I've seen a few function definitions like this recently while playing with GNU Bison:
Why is the type of |
|||
|
|
That are old K&R style function parameter declarations, declaring the types of the parameters separately:
This is the same as the more modern way to declare function parameters:
The "new style" declarations are basically universally preferred. |
|||||||||
|
|
This is the so-called "old" variant of declaring function arguments. In ye olden days, you couldn't just write argument types inside the parentheses, but you had to define it for each argument right after the closing parenthesis. In other words, it is equivalent to |
|||
|
|
|
Yes, it uses an older style of function definition in which the parameters, sans type, are listed in parentheses, followed by the declaration of those variables with their types before the opening brace of the function body. So |
|||
|
|
|
This is old c. K&R C used this convention, before ANSI C enforced typed parameters.
|
|||
|
|
|
That's the old-style C function declaration syntax. |
|||
|
|
|
It is really old C code, where you first specify the argument names, and then their types. See for example here. |
|||
|
|