1. 26 Oct, 2010 2 commits
    • Rafaël Carré's avatar
      ncurses: cosmetics · f78010cf
      Rafaël Carré authored
      Remove braces around a single statement
      Merge some comparisons
      "( a )"             -> "(a)"
      "if(x)"             -> "if (x)"
      "if (x == NULL)"    -> "if (!x)"
      "if (x != NULL)"    -> "if (x)"
      
      ReadDir: Invert logic to have less indentation:
      {
          if( a )
              x();
          else
              y();
      }
      ====>
      {
          if( !a )
          {
              y();
              return;
          }
      
          x();
      }
      f78010cf
    • Rafaël Carré's avatar
      ncurses: reorder static functions · 26e66361
      Rafaël Carré authored
      Remove most forward declarations
      Also update copyright
      26e66361
  2. 25 Oct, 2010 21 commits
  3. 24 Oct, 2010 11 commits
  4. 23 Oct, 2010 6 commits