12345678910111213141516171819202122232425262728293031323334353637383940 |
- /*====================================================================
- macros.h
-
- macros used to access data structures and perform quick tests.
- ====================================================================*/
- /* general-purpose macros */
- #define SWAP(t,x,y) { t = x; x = y; y = t; }
- #define NEW(p,type) if ((p=(type *) malloc (sizeof(type))) == NULL) {\
- printf ("Out of Memory!\n");\
- exit(0);\
- }
- #define FREE(p) if (p) { free ((char *) p); p = NULL; }
- #define ADD( head, p ) if ( head ) { \
- p->next = head; \
- p->prev = head->prev; \
- head->prev = p; \
- p->prev->next = p; \
- } \
- else { \
- head = p; \
- head->next = head->prev = p; \
- }
- #define DELETE( head, p ) if ( head ) { \
- if ( head == head->next ) \
- head = NULL; \
- else if ( p == head ) \
- head = head->next; \
- p->next->prev = p->prev; \
- p->prev->next = p->next; \
- FREE( p ); \
- }
|