* @brief tests whether a list is empty * @param l the list to test. */
| 99 | * @param l the list to test. |
| 100 | */ |
| 101 | rt_inline int rt_list_isempty(const rt_list_t *l) |
| 102 | { |
| 103 | return l->next == l; |
| 104 | } |
| 105 | |
| 106 | /** |
| 107 | * @brief get the list length |
no outgoing calls
no test coverage detected