struct ast_channel *(* const requester)(const char *type, int format, void *data, int *cause);
What is the meaning of this line?
Second question: what is the advantage of using
static struct hello
{
int a;
chat b;
};
over simply
struct hello
{
int a;
};
Also, what is the difference between static char p[]
and char p[];
?