Merge "Added a new Flag ODU_LWR_MAC_DEBUG in the code"
[o-du/l2.git] / src / cm / cm_llist.c
index e9ae20f..12fb582 100644 (file)
 *
 */
 #ifdef ANSI
-PUBLIC Void cmLListInit
+Void cmLListInit
 (
 CmLListCp *lCp                /* list control point */
 )
 #else 
-PUBLIC Void cmLListInit(lCp)
+Void cmLListInit(lCp)
 CmLListCp *lCp;               /* list control point */
 #endif
 {
-   TRC3(cmLListInit);
    
    lCp->first = (CmLList *)NULLP;
    lCp->last  = (CmLList *)NULLP;
@@ -97,18 +96,17 @@ CmLListCp *lCp;               /* list control point */
 *
 */
 #ifdef ANSI
-PUBLIC Void cmLListAdd2Head
+Void cmLListAdd2Head
 (
 CmLListCp *lCp,               /* list control point */
 CmLList   *node               /* node to be added */
 )
 #else 
-PUBLIC Void cmLListAdd2Head(lCp, node)
+Void cmLListAdd2Head(lCp, node)
 CmLListCp *lCp;               /* list control point */
 CmLList   *node;              /* node to be added */
 #endif
 {
-   TRC3(cmLListAdd2Head);
 
 #ifdef ERRCHK
    if (lCp == (CmLListCp *)NULLP)
@@ -146,18 +144,17 @@ CmLList   *node;              /* node to be added */
 *
 */
 #ifdef ANSI
-PUBLIC Void cmLListAdd2Tail
+Void cmLListAdd2Tail
 (
 CmLListCp *lCp,               /* list control point */
 CmLList   *node               /* node to be added */
 )
 #else 
-PUBLIC Void cmLListAdd2Tail(lCp, node)
+Void cmLListAdd2Tail(lCp, node)
 CmLListCp *lCp;               /* list control point */
 CmLList   *node;              /* node to be added */
 #endif
 {
-   TRC3(cmLListAdd2Tail);
 
 #ifdef ERRCHK
    if (lCp == (CmLListCp *)NULLP)
@@ -195,18 +192,17 @@ CmLList   *node;              /* node to be added */
 *
 */
 #ifdef ANSI
-PUBLIC Void cmLListInsCrnt
+Void cmLListInsCrnt
 (
 CmLListCp *lCp,               /* list control point */
 CmLList   *node               /* node to be added */
 )
 #else 
-PUBLIC Void cmLListInsCrnt(lCp, node)
+Void cmLListInsCrnt(lCp, node)
 CmLListCp *lCp;               /* list control point */
 CmLList   *node;              /* node to be added */
 #endif
 {
-   TRC3(cmLListInsCrnt);
 
 #ifdef ERRCHK
    if (!lCp)
@@ -250,18 +246,17 @@ CmLList   *node;              /* node to be added */
 *
 */
 #ifdef ANSI
-PUBLIC Void cmLListInsAfterCrnt
+Void cmLListInsAfterCrnt
 (
 CmLListCp *lCp,               /* list control point */
 CmLList   *node               /* node to be added */
 )
 #else 
-PUBLIC Void cmLListInsAfterCrnt(lCp, node)
+Void cmLListInsAfterCrnt(lCp, node)
 CmLListCp *lCp;               /* list control point */
 CmLList   *node;              /* node to be added */
 #endif
 {
-   TRC3(cmLListInsAfterCrnt);
 
 #ifdef ERRCHK
    if (!lCp)
@@ -307,24 +302,23 @@ CmLList   *node;              /* node to be added */
 *
 */
 #ifdef ANSI
-PUBLIC CmLList *cmLListDelFrm
+CmLList *cmLListDelFrm
 (
 CmLListCp *lCp,                /* list control pointer */
 CmLList *node                  /* node to be removed */
 )
 #else 
-PUBLIC CmLList *cmLListDelFrm(lCp, node)
+CmLList *cmLListDelFrm(lCp, node)
 CmLListCp *lCp;               /* list control pointer */
 CmLList *node;                /* node to be removed */
 #endif
 {
-   TRC3(cmLListDelFrm);
   
 #ifdef ERRCHK
    /* cm_llist_c_001.main_8 : added null check for node */
    if (lCp == (CmLListCp *)NULLP || lCp->count == 0 || !node)
    {
-      RETVALUE(NULLP);
+      return (NULLP);
    }
 #endif
 
@@ -332,7 +326,7 @@ CmLList *node;                /* node to be removed */
    {
       lCp->first = lCp->crnt = lCp->last = (CmLList *)NULLP;
       lCp->count = 0;
-      RETVALUE(node);
+      return (node);
    }
    
    lCp->count--;
@@ -343,7 +337,7 @@ CmLList *node;                /* node to be removed */
          node->next->prev = (CmLList *)NULLP;
       lCp->first = node->next;
       node->next = node->prev = (CmLList *)NULLP;
-      RETVALUE(node);
+      return (node);
    }
    
    if (lCp->last == node)
@@ -352,13 +346,13 @@ CmLList *node;                /* node to be removed */
          node->prev->next = (CmLList *)NULLP;
       lCp->last = node->prev;
       node->next = node->prev = (CmLList *)NULLP;
-      RETVALUE(node);
+      return (node);
    }
 
    node->prev->next = node->next;
    node->next->prev = node->prev;
    node->next = node->prev = (CmLList *)NULLP;
-   RETVALUE(node);
+   return (node);
 } /* end of cmLListDelFrm */
 
 
@@ -377,18 +371,17 @@ CmLList *node;                /* node to be removed */
   *
   --*/
 #ifdef ANSI
-PUBLIC Void cmLListCatLList
+Void cmLListCatLList
 (
  CmLListCp *list1,              /*-- list control point --*/
  CmLListCp *list2               /*-- node to be added --*/
  )
 #else 
-PUBLIC Void cmLListCatLList(list1, list2)
+Void cmLListCatLList(list1, list2)
    CmLListCp *list1;              /*-- list control point --*/
    CmLListCp *list2;              /*-- node to be added --*/
 #endif
 {
-   TRC3(cmLListCatLList);
 
    /*-- if the second list is empty nothing to do --*/
    if(list2->count == 0)