Merge da SC: prima versione veramente funzionante
[bertos.git] / mware / list.h
index 8f57f448bced6c4952401ec058d54cae4082e23c..2e5da8907702462c7770b051da92b79c73f4dfb1 100755 (executable)
 
 /*
  * $Log$
+ * Revision 1.6  2004/07/30 14:34:10  rasky
+ * Vari fix per documentazione e commenti
+ * Aggiunte PP_CATn e STATIC_ASSERT
+ *
+ * Revision 1.5  2004/07/20 23:45:01  bernie
+ * Finally remove redundant protos.
+ *
  * Revision 1.4  2004/07/18 22:12:53  bernie
  * Fix warnings with GCC 3.3.2.
  *
@@ -118,10 +125,9 @@ typedef struct _List
 #define ISLISTEMPTY(l)  ( (l)->head == (Node *)(&(l)->null) )
 
 /*!
- * \name Unlink a node from the head of the list \a l.
+ * Unlink a node from the head of the list \a l.
  * \return Pointer to node, or NULL if the list was empty.
  */
-INLINE Node *REMHEAD(List *l);
 INLINE Node *REMHEAD(List *l)
 {
        Node *n;
@@ -136,10 +142,9 @@ INLINE Node *REMHEAD(List *l)
 }
 
 /*!
- * \name Unlink a node from the tail of the list \a l.
+ * Unlink a node from the tail of the list \a l.
  * \return Pointer to node, or NULL if the list was empty.
  */
-INLINE Node *REMTAIL(List *l);
 INLINE Node *REMTAIL(List *l)
 {
        Node *n;