jazykc  2013.3
upoljazykc
 All Classes Files Functions Variables Typedefs Macros Pages
funkce-s-promennym-poctem-parametru.h
1 #ifndef FUNKCE_S_PROMENNYM_POCTEM_PARAMETRU_H_INCLUDED
2 #define FUNKCE_S_PROMENNYM_POCTEM_PARAMETRU_H_INCLUDED
3 #endif
4 
5 #ifdef __cplusplus
6 extern "C" {
7 #endif
8 
17 long double prumer (char* format, ...);
18 
19 
24 typedef struct komplexni {
25  double re;
26  double im;
27 } komplexni;
28 
29 komplexni suma (int pocet, ...);
30 
41 char * concat (char *str, ...);
42 
43 #ifdef __cplusplus
44 }
45 #endif
46 #undef FUNKCE_S_PROMENNYM_POCTEM_PARAMETRU_H_INCLUDED
struct komplexni komplexni
long double prumer(char *format,...)
Definition: prumer-cisel.c:44
char * concat(char *str,...)
Definition: concat.c:26