Ignore:
Timestamp:
Sep 15, 2004, 12:27:38 AM (21 years ago)
Author:
bird
Message:

@unixroot. header reviews. ++

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/include/splay-tree.h

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r1505 r1506  
    1 /* A splay-tree datatype. 
     1/* splay-tree.h,v 1.2 2004/09/14 22:27:35 bird Exp */
     2/** @file
     3 * GNU, -liberty.
     4 */
     5/* A splay-tree datatype.
    26   Copyright 1998, 1999, 2000 Free Software Foundation, Inc.
    37   Contributed by Mark Mitchell (mark@markmitchell.com).
    48
    59This file is part of GCC.
    6    
     10
    711GCC is free software; you can redistribute it and/or modify it
    812under the terms of the GNU General Public License as published by
     
    2327
    2428     Lewis, Harry R. and Denenberg, Larry.  Data Structures and Their
    25      Algorithms.  Harper-Collins, Inc.  1991. 
     29     Algorithms.  Harper-Collins, Inc.  1991.
    2630
    2731   The major feature of splay trees is that all basic tree operations
     
    121125                                                void *));
    122126extern void splay_tree_delete           PARAMS((splay_tree));
    123 extern splay_tree_node splay_tree_insert         
     127extern splay_tree_node splay_tree_insert
    124128                                        PARAMS((splay_tree,
    125129                                                splay_tree_key,
     
    127131extern void splay_tree_remove           PARAMS((splay_tree,
    128132                                                splay_tree_key));
    129 extern splay_tree_node splay_tree_lookup   
     133extern splay_tree_node splay_tree_lookup
    130134                                        PARAMS((splay_tree,
    131135                                                splay_tree_key));
     
    147151extern int splay_tree_compare_pointers  PARAMS((splay_tree_key,
    148152                                                splay_tree_key));
    149                                                
     153                                       
    150154#ifdef __cplusplus
    151155}
Note: See TracChangeset for help on using the changeset viewer.