MCPcopy Create free account
hub / github.com/RT-Thread/rt-thread / rt_slist_insert

Function rt_slist_insert

include/rtservice.h:209–213  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

207}
208
209rt_inline void rt_slist_insert(rt_slist_t *l, rt_slist_t *n)
210{
211 n->next = l->next;
212 l->next = n;
213}
214
215rt_inline unsigned int rt_slist_len(const rt_slist_t *l)
216{

Callers 8

rt_rbb_initFunction · 0.85
rt_rbb_blk_allocFunction · 0.85
rt_rbb_blk_freeFunction · 0.85
alloc_socket_by_deviceFunction · 0.85
_alloc_memregFunction · 0.85
get_clk_gate_from_idFunction · 0.85
get_pd_from_idFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected