More formatting updates. Reduced whitespace, looks even better.

This commit is contained in:
William Ferrell
2000-03-30 20:43:33 +00:00
parent a98c8109a8
commit ddfd41f53e
78 changed files with 0 additions and 590 deletions
-7
View File
@@ -1,8 +1,6 @@
#ifndef LL_H
#define LL_H
/***********************************************************************
Linked Lists! (Doubly-Linked Lists)
*******************************************************************
@@ -115,7 +113,6 @@
That's about it, for now... Be sure to free the list when you're done!
***********************************************************************/
// See LL.c for more detailed descriptions of these functions.
typedef struct LL_node {
@@ -128,8 +125,6 @@ typedef struct LL {
LL_node *current;
} LL;
// Creates a new list...
LL *LL_new ();
// Destroying lists...
@@ -188,7 +183,6 @@ int LL_UnRoll (LL * list); // Roll the other way...
int LL_PriorityEnqueue (LL * list, void *add, int compare (void *, void *));
int LL_SwapNodes (LL_node * one, LL_node * two); // Switch two nodes positions...
int LL_nSwapNodes (int one, int two); // Switch two nodes positions...
@@ -200,7 +194,6 @@ void *LL_Find (LL * list, int compare (void *, void *), void *value);
// Sorts the list...
int LL_Sort (LL * list, int compare (void *, void *));
// Debugging...
void LL_dprint (LL * list);