source: trunk/src/emx/include/sort.h@ 1506

Last change on this file since 1506 was 1506, checked in by bird, 21 years ago

@unixroot. header reviews. ++

  • Property cvs2svn:cvs-rev set to 1.2
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 1.2 KB
Line 
1/* sort.h,v 1.2 2004/09/14 22:27:35 bird Exp */
2/** @file
3 * GNU, -liberty.
4 */
5/* Sorting algorithms.
6 Copyright (C) 2000 Free Software Foundation, Inc.
7 Contributed by Mark Mitchell <[email protected]>.
8
9This file is part of GCC.
10
11GCC is free software; you can redistribute it and/or modify it
12under the terms of the GNU General Public License as published by
13the Free Software Foundation; either version 2, or (at your option)
14any later version.
15
16GCC is distributed in the hope that it will be useful, but
17WITHOUT ANY WARRANTY; without even the implied warranty of
18MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19General Public License for more details.
20
21You should have received a copy of the GNU General Public License
22along with GCC; see the file COPYING. If not, write to
23the Free Software Foundation, 59 Temple Place - Suite 330,
24Boston, MA 02111-1307, USA. */
25
26#ifndef SORT_H
27#define SORT_H
28
29#include <sys/types.h> /* For size_t */
30#ifdef __STDC__
31#include <stddef.h>
32#endif /* __STDC__ */
33
34#ifdef __cplusplus
35extern "C" {
36#endif /* __cplusplus */
37
38#include <ansidecl.h>
39
40/* Sort an array of pointers. */
41
42extern void sort_pointers PARAMS ((size_t, void **, void **));
43
44#ifdef __cplusplus
45}
46#endif /* __cplusplus */
47
48#endif /* SORT_H */
49
50
51
52
Note: See TracBrowser for help on using the repository browser.