编译时出现一个错误,求帮助解决
//这是一个头文件,sort函数包含其中struct a
{
char B[20];
int b;
struct a *f;
};
(struct a)*sort(struct a *p);
{ //出现错误:expect identifier or '(' before '{',请问我应该改哪里?
int i=0;
(struct a) *now,*head,*temp1,*temp2,*temp3;
while(p!=NULL;)
{
now=p->f;
while(now!=NULL)
{
if(*(p->b)<*(now->b))
{
temp1=p->f;
temp2=now->f;
temp3=p;
now=temp3;
p->f=temp1;
now->f=temp2;
if(i==0)
head=p;
}
now=now->f;
}
p=p->f;
i=1;
}
return 0;
}