JianyuWang0623 opened a new pull request, #17103:
URL: https://github.com/apache/nuttx/pull/17103
## Summary
Add `list_for_every_entry_from()`: Iterate over the list of the given type,
continuing from the current position.
Referenced `list_for_every_entry_safe_from()`.
## Impact
- nuttx/list
## Testing
- Selftest
```C
struct xxxx_s
{
/* ... ... */
struct list_node node;
} *tmp;
list_for_every_entry_from(&head, tmp, struct xxxx_s, node)
{
/* ... ... */
}
```
- CI
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]