* @brief initialize a single list * * @param l the single list to be initialized */
| 190 | * @param l the single list to be initialized |
| 191 | */ |
| 192 | rt_inline void rt_slist_init(rt_slist_t *l) |
| 193 | { |
| 194 | l->next = RT_NULL; |
| 195 | } |
| 196 | |
| 197 | rt_inline void rt_slist_append(rt_slist_t *l, rt_slist_t *n) |
| 198 | { |
no outgoing calls
no test coverage detected