1 /* 2 * function.h 3 * 4 * Beispiel-Programm lokale und globale Variablen 5 * 6 * Autor: H.Drachenfels 7 * Erstellt am: 16.2.2011 8 */
9
10 #ifndef FUNCTION_H
11 #define FUNCTION_H
12
13 int function(int param);
14
15 #endif
16