X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2Fcm%2Fcm_llist.c;h=036cf13b0e849456e3d39272a45c3c18c3680906;hb=0a26c487f1b6bbb5217e47b15fa8273b2e749283;hp=a41af96935243ec928a8cce265af8c4ffbafb1cf;hpb=aee73991f728cc127d1ed76d5a52571d916235a4;p=o-du%2Fl2.git diff --git a/src/cm/cm_llist.c b/src/cm/cm_llist.c index a41af9693..036cf13b0 100644 --- a/src/cm/cm_llist.c +++ b/src/cm/cm_llist.c @@ -61,12 +61,12 @@ * */ #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 { @@ -97,13 +97,13 @@ 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 @@ -146,13 +146,13 @@ 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 @@ -195,13 +195,13 @@ 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 @@ -250,13 +250,13 @@ 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 @@ -307,13 +307,13 @@ 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 @@ -377,13 +377,13 @@ 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