Code beautification with uncrustify
[alexxy/gromacs.git] / src / tools / binsearch.h
index 973c5f2270d679fe0739d2ae9b290daf5daa2119..0bd47832bb3be03fe8a8d4e704a7c225b468015d 100644 (file)
@@ -1,35 +1,35 @@
 /* -*- mode: c; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; c-file-style: "stroustrup"; -*-
  * $Id: densorder.c,v 0.9
- * 
+ *
  *                This source code is part of
- * 
+ *
  *                 G   R   O   M   A   C   S
- * 
+ *
  *          GROningen MAchine for Chemical Simulations
- * 
+ *
  *                        VERSION 3.0
- * 
+ *
  * Copyright (c) 1991-2001
  * BIOSON Research Institute, Dept. of Biophysical Chemistry
  * University of Groningen, The Netherlands
- * 
+ *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
  * as published by the Free Software Foundation; either version 2
  * of the License, or (at your option) any later version.
- * 
+ *
  * If you want to redistribute modifications, please consider that
  * scientific software is very special. Version control is crucial -
  * bugs must be traceable. We will be happy to consider code for
  * inclusion in the official distribution, but derived work must not
  * be called official GROMACS. Details are found in the README & COPYING
  * files - if they are missing, get the official version at www.gromacs.org.
- * 
+ *
  * To help us fund GROMACS development, we humbly ask that you cite
  * the papers on the package - you can find them in the top README file.
- * 
+ *
  * Do check out http://www.gromacs.org , or mail us at gromacs@gromacs.org .
- * 
+ *
  * And Hey:
  * Gyas ROwers Mature At Cryogenic Speed
  */
 
 #include "types/simple.h"
 
-extern void rangeArray(int *ar,int size);
+extern void rangeArray(int *ar, int size);
 
 extern void insertionSort(real *ar, int *perm, int start, int end, int direction);
 
 extern int BinarySearch(real *ar, int start, int end, real key, int direction);
 
-extern int start_binsearch(real *array, int *perm, int low, int high, 
+extern int start_binsearch(real *array, int *perm, int low, int high,
                            real key, int direction);
-                          
-extern int LinearSearch(double *array,int startindx, int stopindx, 
-                        double key,int *count, int direction);
+
+extern int LinearSearch(double *array, int startindx, int stopindx,
+                        double key, int *count, int direction);
 
 #endif