Changeset 420 for trunk/Jgraph/list.h


Ignore:
Timestamp:
02/27/08 07:13:31 (16 years ago)
Author:
Nicholas Riley
Message:

Jgraph: my changes - ANSIfication, few minor bug fixes; works on OS X 10.5 now

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Jgraph/list.h

    r418 r420  
    2424#define prev(n) (n->blink)
    2525
    26 /* These are the routines for manipluating lists */
     26/* These are the routines for manipulating lists */
    2727
    28 /* void insert(node list);    Inserts a node to the end of a list */
    29 /* void delete_item(node);    Deletes an arbitrary node */
    30 /* List make_list(node_size); Creates a new list */
    31 /* List get_node(list);        Allocates a node to be inserted into the list */
    32 /* void free_node(node, list); Deallocates a node from the list */
     28void insert(void *, void *);/* Inserts a node to the end of a list */
     29void delete_item(void *);   /* Deletes an arbitrary node */
     30List make_list(int size);   /* Creates a new list */
     31List get_node(void *);      /* Allocates a node to be inserted into the list */
     32void free_node(void *, void *); /* Deallocates a node from the list */
    3333
     34void error_header();
Note: See TracChangeset for help on using the changeset viewer.