function-definition: declaration-specifiers declarator declaration-listopt compound-statement declaration-list: declaration declaration-list declaration
1806 The identifier declared in a function definition (which is the name of the function) shall have a function type, as specified by the declarator portion of the function definition.138)
1807
The return type of a function shall be
1808
The storage-class specifier, if any, in the declaration specifiers
shall be either
1809
If the declarator includes a parameter type list, the declaration of
each parameter shall include an identifier, except for the special
case of a parameter list consisting of a single parameter of type
1810 No declaration list shall follow.
1811 If the declarator includes an identifier list, each declaration in the declaration list shall have at least one declarator, those declarators shall declare only identifiers from the identifier list, and every identifier in the identifier list shall be declared.
1812 An identifier declared as a typedef name shall not be redeclared as a parameter.
1813
The declarations in the declaration list shall contain no
storage-class specifier other than
1814 138) The intent is that the type category in a function definition cannot be inherited from a typedef:
typedef int F(void); // type F is "function with no parameters
// returning int"
F f, g; // f and g both have type compatible with F
F f { /* ... */ } // WRONG: syntax/constraint error
F g() { /* ... */ } // WRONG: declares that g returns a function
int f(void) { /* ... */ } // RIGHT: f has type compatible with F
int g() { /* ... */ } // RIGHT: g has type compatible with F
F *e(void) { /* ... */ } // e returns a pointer to a function
F *((e))(void) { /* ... */ } // same: parentheses irrelevant
int (*fp)(void); // fp points to a function that has type F
F *Fp; // Fp points to a function that has type F
1815 The declarator in a function definition specifies the name of the function being defined and the identifiers of its parameters.
1816 If the declarator includes a parameter type list, the list also specifies the types of all the parameters;
1817 such a declarator also serves as a function prototype for later calls to the same function in the same translation unit.
1818 If the declarator includes an identifier list,139) the types of the parameters shall be declared in a following declaration list.
1819 In either case, the type of each parameter is adjusted as described in 6.7.5.3 for a parameter type list;
1820 the resulting type shall be an object type.
1821 If a function that accepts a variable number of arguments is defined without a parameter type list that ends with the ellipsis notation, the behavior is undefined.
1822 Each parameter has automatic storage duration.
1823 Its identifier is an lvalue, which is in effect declared at the head of the compound statement that constitutes the function body (and therefore cannot be redeclared in the function body except in an enclosed block).
1824 The layout of the storage for parameters is unspecified.
1825 On entry to the function, the size expressions of each variably modified parameter are evaluated and the value of each argument expression is converted to the type of the corresponding parameter as if by assignment.
1826 (Array expressions and function designators as arguments were converted to pointers before the call.)
1827 After all parameters have been assigned, the compound statement that constitutes the body of the function definition is executed.
1828
If the
1829 EXAMPLE 1 In the following:
extern int max(int a, int b)
{
return a > b ? a : b;
}
{ return a > b ? a : b; }
is the function body. The following similar definition uses the identifier-list form for the parameter declarations:
extern int max(a, b)
int a, b;
{
return a > b ? a : b;
}
Here
1830 139) See future language directions (6.11.7).
1831 EXAMPLE 2 To pass one function to another, one might say
int f(void);
/* ... */
g(f);
Then the definition of
void g(int (*funcp)(void))
{
/* ... */
(*funcp)(); /* or funcp() ... */
}
or, equivalently,
void g(int func(void))
{
/* ... */
func(); /* or (*func)() ... */
}
Next
Created at: 2005-06-29 02:19:04
The text from WG14/N1124 is copyright © ISO