tokenpasting.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Sat, 13 Dec 2008 17:58:00 +0100
changeset 8 96d16dfe787a
parent 0 af501b0c1716
child 9 c3fecc82ade6
permissions -rw-r--r--
We use return EXIT_SUCCESS instead of return 0 committer: Markus Bröker <mbroeker@largo.homelinux.org>

/**
 *     $Id: tokenpasting.c,v 1.1.1.1 2008-04-28 17:32:53 mbroeker Exp $
 * $Source: /development/c/demos/tokenpasting.c,v $
 *
 * Description: Demonstration of the secret token concatenation mechanism
 */

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

#define a(a,b) { tsb.fd##a = b; }

struct {
    int fd1;
    int fd2;
    int fd3;
} tsb;

int main (int argc, char **argv)
{
    a (1, 10);
    a (2, 20);
    a (3, 30);

    printf ("1=[%d] 2=[%d] 3=[%d]\n", tsb.fd1, tsb.fd2, tsb.fd3);

    return EXIT_SUCCESS;
}