Anonymous
public text v1 · immutable#include <stdio.h>
struct test
{
void (*handler)( char *param );
};
void f( char *param )
{
;
}
int main()
{
struct test tmp;
tmp.handler = f;
}
#include <stdio.h>
struct test
{
void (*handler)( char *param );
};
void f( char *param )
{
;
}
int main()
{
struct test tmp;
tmp.handler = f;
}