home *** CD-ROM | disk | FTP | other *** search
- /*Program 4_2b - Sort IRS data
- by Stephen R. Davis, 1987
-
- Define the first stab at the insert() and remove() functions.
- */
-
- #include <stdio.h>
-
- /*prototype declarations --*/
- int insert (struct IRSdata *, struct IRSdata *, struct IRSdata *);
- int remove (struct IRSdata *);
-
- /*structure to contain IRS data w/ pointers added*/
- struct IRSdata {
- struct IRSdata *previous,*next;
- char lastname [11];
- char firstname [11];
- char sex;
- struct {
- char street [16];
- char city [11];
- char state [3];
- } address;
- char ssnum [10];
- int taxrate;
- };
-
-
- /*Insert - insert a structure in between two doubly linked entries.
- Return a 0 if successful, and a nonzero if not*/
- int insert (before, after, current)
- struct IRSdata *before, *after, *current;
- {
- if (before -> next != after) return -1;
- if (before != after -> previous) return -1;
-
- before -> next = current;
- current -> previous = before;
-
- after -> previous = current;
- current -> next = after;
- return 0;
- }
-
- /*Remove - remove an entry from a doubly linked list*/
- int remove (entry)
- struct IRSdata *entry;
- {
- struct IRSdata *before, *after;
-
- before = entry -> previous;
- after = entry -> next;
-
- before -> next = after;
- after -> previous = before;
-
- entry -> previous = entry -> next = (struct IRSdata *)NULL;
- }