File: CNsort.h

package info (click to toggle)
plotmtv 1.4.1-4
  • links: PTS
  • area: main
  • in suites: slink
  • size: 4,024 kB
  • ctags: 5,006
  • sloc: ansic: 51,179; makefile: 1,976; fortran: 1,277; sh: 510; csh: 439
file content (35 lines) | stat: -rw-r--r-- 797 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
 * CNsort.c - procedure declarations for sorting
 */

#ifndef CNsort_defined
#define CNsort_defined

extern void   CNdo_quick_sort_curves();
extern void   CNbubble_sort_curves();

extern void   CNdo_quick_sort_trias();
extern void   CNbubble_sort_trias();

extern void   CNdo_quick_sort_rects();
extern void   CNbubble_sort_rects();

extern void   CNdo_quick_sort_elems();
extern void   CNbubble_sort_elems();

extern void   CNdo_quick_sort_cubes();
extern void   CNbubble_sort_cubes();

extern void   CNdo_quick_sort_blocks();
extern void   CNbubble_sort_blocks();

extern void   CNdo_quick_sort_prisms();
extern void   CNbubble_sort_prisms();

extern void   CNdo_quick_sort_polys();
extern void   CNbubble_sort_polys();

extern void   CNdo_quick_sort_xpoints();

#endif /* CNsort_defined */