Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
9380267c
Commit
9380267c
authored
Apr 24, 2000
by
Mark Mitchell
Committed by
Mark Mitchell
Apr 24, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* sort.h: New file.
From-SVN: r33365
parent
eeb0656f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
49 additions
and
0 deletions
+49
-0
include/ChangeLog
+4
-0
include/sort.h
+45
-0
No files found.
include/ChangeLog
View file @
9380267c
2000-04-23 Mark Mitchell <mark@codesourcery.com>
* sort.h: New file.
Tue Apr 18 16:22:30 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
Tue Apr 18 16:22:30 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* hashtab.h (enum insert_option): New type.
* hashtab.h (enum insert_option): New type.
...
...
include/sort.h
0 → 100644
View file @
9380267c
/* Sorting algorithms.
Copyright (C) 2000 Free Software Foundation, Inc.
Contributed by Mark Mitchell <mark@codesourcery.com>.
This file is part of GNU CC.
GNU CC 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, or (at your option)
any later version.
GNU CC 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 GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU CC; see the file COPYING. If not, write to
the Free Software Foundation, 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
#ifndef SORT_H
#define SORT_H
#include <stddef.h>
#ifdef __cplusplus
extern
"C"
{
#endif
/* __cplusplus */
#include <ansidecl.h>
/* Sort an array of pointers. */
extern
void
sort_pointers
PARAMS
((
size_t
,
void
**
,
void
**
));
#ifdef __cplusplus
}
#endif
/* __cplusplus */
#endif
/* SORT_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment