17 lines
407 B
C
17 lines
407 B
C
/*
|
|
* @file sortAlgorithms.h
|
|
*/
|
|
/*
|
|
* Copywrite 2004 Sandia Corporation. Under the terms of Contract
|
|
* DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government
|
|
* retains certain rights in this software.
|
|
* See file License.txt for licensing information.
|
|
*/
|
|
|
|
#ifndef SORTALGORITHMS_H
|
|
#define SORTALGORITHMS_H
|
|
|
|
|
|
void sort_dbl_1(double * const x, const int n);
|
|
|
|
#endif
|