-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbsd_heapsort_r.c
35 lines (32 loc) · 1.12 KB
/
bsd_heapsort_r.c
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
#include <edidentifier.h>
__CIDENT_RCSID(gr_bsd_heapsort_r_c,"$Id: bsd_heapsort_r.c,v 1.9 2024/04/17 15:57:12 cvsuser Exp $")
/*- -*- indent-width: 4; tabs: 8; -*-
* $Id: bsd_heapsort_r.c,v 1.9 2024/04/17 15:57:12 cvsuser Exp $
* BSD heapsort_r
*
*
* Copyright (c) 1998 - 2024, Adam Young.
* All rights reserved.
*
* This file is part of the GRIEF Editor.
*
* The GRIEF Editor is free software: you can redistribute it
* and/or modify it under the terms of the GRIEF Editor License.
*
* Redistributions of source code must retain the above copyright
* notice, and must be distributed with the license document above.
*
* Redistributions in binary form must reproduce the above copyright
* notice, and must include the license document above in
* the documentation and/or other materials provided with the
* distribution.
*
* The GRIEF Editor is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* License for more details.
* ==end==
*/
#define I_AM_HEAPSORT_R
#include "bsd_heapsort.c"
/*end*/