Last active
December 11, 2021 23:18
-
-
Save hapejot/79a6f5b64f05dc9fa02bdde5265b3659 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void *iter = NULL; | |
| struct fy_node_pair *n; | |
| while( ( n = fy_node_mapping_iterate( mapping, &iter ) ) ) | |
| { | |
| const char *key = fy_node_get_scalar0( fy_node_pair_key( n ) ); | |
| struct fy_node *value = fy_node_pair_key( n ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment