Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I came across this piece of code and completely got lost interpreting its meaning.

#include <signal.h>
void (*signal(int sig, void (*func)(int)))(int);

Can someone please explain the code at line 2 with some details ? I know that void and int are types, the *func is a pointer for a function, and the brackets are for priority. But I still don't get the (*signal ...), the (int), and the whole thing combined together. The more detailed , the better. But if you cannot provide details, a few words are also welcome.

Thanks to all for the explanations, probably I've known the meaning/effect of this declaration. But I had to make some more trial to help me understand what's going on, as below:

  1 #include <signal.h>
  2 void (*signal)(int sig, void (*func)(int));
  3 void (*signal)(int);  // then void (signal)(int) again.
  4 //void (*signal(int sig, void (*func)(int)))(int); //break this line into two lines above
  5
  6 int main(){}

In the above code, I broke void (*signal(int sig, void (*func)(int)))(int) into two lines. For line 3, I tried both void (*signal)(int) and void (signal)(int), with the same error result that indicated that I was trying to redeclare signal:

TestDeclaration.c:2: error: 'signal' redeclared as different kind of symbol /usr/include/signal.h:93: error: previous declaration of 'signal' was here
TestDeclaration.c:3: error: 'signal' redeclared as different kind of symbol /usr/include/signal.h:93: error: previous declaration of 'signal' was here

Now I know both the trials are incorrect ways of declaration, but why are they incorrect? Why is the original way of declaration NOT a Redeclaration?

Well, I didn't notice that Bart van Ingen Schenau had answered this question to some extent.

share|improve this question
1  
+1 for showing that you actually understand some of it as opposed to none of it. – BoltClock Sep 14 '10 at 7:02
2  
Try cdecl.org – Björn Pollex Sep 14 '10 at 7:13
1  
Funnily, cdecl.org gives a syntax error on this one. Can someone explain this? – Björn Pollex Sep 14 '10 at 7:22
@Space Cowboy: It gives my syntax error for this one ... – Cedric H. Sep 14 '10 at 7:23
2  
@Space_C0wb0y: It works if you remove the parameter names. – Charles Bailey Sep 14 '10 at 7:25
show 5 more comments

3 Answers

up vote 26 down vote accepted

It's the declaration of a function taking an int and a pointer to a function (taking int returning void) and returning a pointer to a function (taking int and returning void).


Explanation, or guide to interpretation

You can interpret by treating everything in parentheses as a single entity and then working inwards using the "declaration follows usage" rule.

void (*signal(int sig, void (*func)(int)))(int);

The entity in the brackets looks like a function taking int and returning void.

Stripping away the outer part:

*signal(int sig, void (*func)(int))

So, signal takes some parameters and returns something that can be dereferenced (due to the leading *) to form a function taking int and returning void.

This means signal is a function returning a pointer to a function (taking int and returning void).

Looking at the parameters it takes an int (i.e. sig) and void (*func)(int) which is a pointer to a function (taking int and returning void).

share|improve this answer
6  
+1. Very concise. It helps to know the Clockwise/spiral rule when trying to parse complex C declarations. - c-faq.com/decl/spiral.anderson.html – Noufal Ibrahim Sep 14 '10 at 7:09
1  
Personally, I'm not a fan of the clockwise/sprial rule. I prefer to work from the outside in. I know it's not a popular approach, but I'm much happier that I'm applying the grammar rules correctly with my approach. – Charles Bailey Sep 14 '10 at 7:18
It's funny that the clockwise/spiral rule page linked above includes the very same declaration that the OP is asking about. – Jon Purdy Sep 15 '10 at 0:58
There's an even better answer in a duplicate of this question: stackoverflow.com/a/9501054/220060 – nalply Aug 11 '12 at 14:14

This is one of the classical examples of how convoluted C declarations can become.
To understand this declaration, it usually helps to introduce a typedef:

typedef void (*sighandler_t)(int);
sighandler_t signal(int sig, sighandler_t func);

The typedef declares a pointer to a function (taking an int parameter and returning nothing). The function signal can now be seen as a function that takes two parameters (an int and a pointer to a function) and returns a pointer to a function.

This can also be derived from the original declaration, but it takes a bit of practice. The usual way is to start at the identifier that names the outermost entity (signal is this case):

signal is a ...

Then you read right until you find an unmatched closing parenthesis or the end of the declaration: void (*signal(int sig, void (*func)(int))(int)

signal is a function taking ... returning ...

Now you can choose between parsing the parameters first, or the return value first. I will do the return value first. For that, you read backwards to find the matching open parenthesis: void (signal( / ... */ ))(int)

`signal is a function taking ... returning a pointer to ...

Reading back and forth this way you get at successive stages:

`signal is a function taking ... returning a pointer to a (function taking ... returning ...)

`signal is a function taking ... returning a pointer to a (function taking ... returning void)

`signal is a function taking ... returning a pointer to a (function taking an int and returning void)

`signal is a function taking two parameters: (an int) and (a pointer to a function taking an int and returning void), and returning a pointer to a (function taking an int and returning void)

share|improve this answer

returning pointer to a funtion which takes an integer as first argument argument and a pointer to a function (which takes an int and returns void )as an argument as a second argument. and takes an integer argument.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.