function_pointers.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Thu, 16 Apr 2009 12:49:13 +0200
changeset 59 a7ba10b68915
parent 27 81a574d60c15
child 77 49e0babccb23
permissions -rw-r--r--
getpwnam_error.c: * The memory hole can be fixed with two different approaches 1) Change /etc/nsswitch.conf: passwd: compat to passwd: files 2) LD_PRELOAD=/lib/libnss_compat.so.2 valgrind ./getpwnam_error GLIBC loads libnss_compat on the fly and unloads it. Thanks to telexicon for reporting this... committer: Markus Bröker <mbroeker@largo.homelinux.org>

/**
 * test/demos/function_pointers.c
 * Copyright (C) 2008 Markus Broeker
 */

#include <stdio.h>
#include <stdlib.h>

typedef struct T {
    int a;
    int b;
} T;

int plus (T t)
{
    return t.a + t.b;
}

int minus (T t)
{
    return t.a - t.b;
}

int func (T t, int (*ptrFunc) (T))
{
    return ptrFunc (t);
}

int main (int argc, char **argv)
{
    T t = {
        .a = 20,
        .b = 10
    };

    printf ("Result: %d\n", func (t, &plus));
    printf ("Result: %d\n", func (t, &minus));

    return EXIT_SUCCESS;
}