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
5aa23000
Commit
5aa23000
authored
Nov 03, 2000
by
Hans-Peter Nilsson
Committed by
Hans-Peter Nilsson
Nov 03, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* hashtab.h: Change void * to PTR where necessary.
From-SVN: r37230
parent
426159a4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
5 deletions
+9
-5
include/ChangeLog
+4
-0
include/hashtab.h
+5
-5
No files found.
include/ChangeLog
View file @
5aa23000
2000-11-03 Hans-Peter Nilsson <hp@bitrange.com>
* hashtab.h: Change void * to PTR where necessary.
2000-09-10 Mark Mitchell <mark@codesourcery.com>
* splay-tree.h (splay_tree_predecessor): Declare.
...
...
include/hashtab.h
View file @
5aa23000
...
...
@@ -80,7 +80,7 @@ struct htab
htab_del
del_f
;
/* Table itself. */
void
*
*
entries
;
PTR
*
entries
;
/* Current size (in entries) of the hash table */
size_t
size
;
...
...
@@ -112,12 +112,12 @@ extern htab_t htab_create PARAMS ((size_t, htab_hash,
extern
void
htab_delete
PARAMS
((
htab_t
));
extern
void
htab_empty
PARAMS
((
htab_t
));
extern
void
*
htab_find
PARAMS
((
htab_t
,
const
void
*
));
extern
void
*
*
htab_find_slot
PARAMS
((
htab_t
,
const
void
*
,
extern
PTR
htab_find
PARAMS
((
htab_t
,
const
void
*
));
extern
PTR
*
htab_find_slot
PARAMS
((
htab_t
,
const
void
*
,
enum
insert_option
));
extern
void
*
htab_find_with_hash
PARAMS
((
htab_t
,
const
void
*
,
extern
PTR
htab_find_with_hash
PARAMS
((
htab_t
,
const
void
*
,
hashval_t
));
extern
void
*
*
htab_find_slot_with_hash
PARAMS
((
htab_t
,
const
void
*
,
extern
PTR
*
htab_find_slot_with_hash
PARAMS
((
htab_t
,
const
void
*
,
hashval_t
,
enum
insert_option
));
extern
void
htab_clear_slot
PARAMS
((
htab_t
,
void
**
));
...
...
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