Don't like ads? PRO users don't see any ads ;-)
Guest

merge of frame content

By: a guest on Aug 6th, 2012  |  syntax: None  |  size: 0.61 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1.         if (top->square_left != NULL) {
  2.             if (square_left == NULL)
  3.                 square_left = top->square_left;
  4.             else if (square_right == NULL)
  5.                 square_right = top->square_left;
  6.             else
  7.                 printf("no space left in combine square\n");
  8.         }
  9.         if (top->square_right != NULL) {
  10.             if (square_left == NULL)
  11.                 square_left = top->square_right;
  12.             else if (square_right == NULL)
  13.                 square_right = top->square_right;
  14.             else
  15.                 printf("no space left in combine square\n");
  16.         }