Advertisement
Guest User

Untitled

a guest
Feb 19th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. if (cmd == CHK_ISOL_ALLE)
  2. {
  3. tvsign_type_t *tvsign = &Tv.Tgv[x].TvSign[0];
  4.  
  5. for (int t=0; t<NUM_OF_TV_SIGN_ELEMENTS; t++)
  6. {
  7. if (tvsign[t]->Type == EOD) break;
  8.  
  9. isol_type_t *isol = &tvsign[t].isol[0];
  10.  
  11. for (int u; u<NUM_OF_ISOL_ELEMENTS; u++)
  12. {
  13. if (isol[u]->Nr == EOD) break;
  14.  
  15. if (bs_afl_isol(Tv.BsBl, isol[u]->Nr) != 0) return false;
  16. }
  17. }
  18.  
  19. return true;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement