main
This commit is contained in:
parent
3bd0866264
commit
05452b2a66
13
cv6/main.c
13
cv6/main.c
@ -60,12 +60,12 @@ void test_station(struct station* station){
|
||||
fclose(fp);
|
||||
}
|
||||
|
||||
int main(){
|
||||
|
||||
int main(){
|
||||
struct station* station = create_station();
|
||||
//test_station(station);
|
||||
printf("Zadajte stanicu na pridanie do zoznamu:\n");
|
||||
|
||||
////////////////////////////
|
||||
|
||||
char add[30];
|
||||
fgets(add, 30, stdin);
|
||||
add[strlen(add)-1] = '\0';
|
||||
@ -76,8 +76,13 @@ int main(){
|
||||
cap[strlen(cap)-1] = '\0';
|
||||
int n = atoi(cap);
|
||||
add_target_capacity(station,add,n);
|
||||
|
||||
/////////////////////////////
|
||||
test_station(station);
|
||||
|
||||
int c_targets = count_targets(station);
|
||||
printf("Aktualne existuju %d stanic\n", c_targets);
|
||||
|
||||
|
||||
printf("\n");
|
||||
print_station(station);
|
||||
printf("\n");
|
||||
|
Loading…
Reference in New Issue
Block a user