X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=mware%2Flist.h;h=2e5da8907702462c7770b051da92b79c73f4dfb1;hb=4afd09ec0c80aa1611fc3b5a3517e9c0d1755cfd;hp=08d45aca6b8b99c06bba30e3633d2cf865dabb87;hpb=e694f670930ee36a0c4b0a7da8761d2e063dba22;p=bertos.git diff --git a/mware/list.h b/mware/list.h index 08d45aca..2e5da890 100755 --- a/mware/list.h +++ b/mware/list.h @@ -13,6 +13,16 @@ /* * $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. + * * Revision 1.3 2004/07/18 22:01:43 bernie * REMHEAD(), REMTAIL(): Move to list.h as inline functions. * @@ -115,7 +125,7 @@ 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) @@ -132,7 +142,7 @@ 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)