/*
 * Soubor:  20110330-Wed-typedef.c
 * Datum:   30.03.2011 12:25
 * Autor:   Marek Nožka, nozka <@t> spseol <d.t> cz
 * Licence: GNU/GPL 
 * Úloha: 
 * Popis:   
 ****************************************************/
#define _ISOC99_SOURCE
#define _GNU_SOURCE
#include <stdio.h>
#include <stdbool.h>

#define LEN 30


/****************************************************
 *               Hlavní program.
 ****************************************************/
int main(void) {
    typedef int *jmenotypu;
    jmenotypu odka_na_integer;

    typedef int (*Odka_na_fci)(char *);

    Odka_na_fci pole_odkazu_na_fce[LEN]

    return 0;
}

