void hlavicka(char *title, FILE * expt, short int level, short int spec){
	char _title[MAX_STR] = STR_EMPTY;
#if defined(OS_Windows_Ruby)
	mystrcpy(_title, skratka_jazyka_title[_global_jazyk], MAX_STR);
	strcat(_title, ": ");
#endif
	strcat(_title, title);
	_hlavicka(_title, expt, level, spec);
}
Esempio n. 2
0
void hlavicka(char *title, FILE * expt, short int level, short int spec) {
    _hlavicka(title, expt, level, spec);
}
Esempio n. 3
0
void hlavicka(char *title, short int level, short int spec) {
    _hlavicka(title, NULL, level, spec);
}