All pastes #236694 Raw Edit

Anonymous

public text v1 · immutable
#236694 ·published 2006-11-03 23:58 UTC
rendered paste body
#include <stdio.h>

struct test
{
    void (*handler)( char *param );
};

void f( char *param )
{
    ;
}

int main()
{
    struct test tmp;

    tmp.handler = f;
}