Changeset fd6d8620 in rtems-docs
- Timestamp:
- 03/08/23 20:39:25 (7 months ago)
- Branches:
- master
- Children:
- cdb6208
- Parents:
- 2f7ebf7
- git-author:
- Kinsey Moore <kinsey.moore@…> (03/08/23 20:39:25)
- git-committer:
- Joel Sherrill <joel@…> (03/09/23 15:16:12)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c-user/chains.rst
r2f7ebf7 rfd6d8620 193 193 rtems_chain_initialize_empty (out); 194 194 195 node = rtems_chain_head (chain); 195 node = rtems_chain_first (chain); 196 196 197 while (!rtems_chain_is_tail (chain, node)) 197 198 { 198 199 bar = (foo*) node; 199 rtems_chain_node* next_node = node->next;200 rtems_chain_node* next_node = rtems_chain_next(node); 200 201 if (strcmp (match, bar->data) == 0) 201 202 {
Note: See TracChangeset
for help on using the changeset viewer.