- Timestamp:
- May 20, 2011, 3:59:31 PM (12 years ago)
- Branches:
- master, release-1.8, release-1.9
- Children:
- 4c7c21f
- Parents:
- fda61d3
- git-author:
- David Benjamin <davidben@mit.edu> (05/07/11 15:21:11)
- git-committer:
- David Benjamin <davidben@mit.edu> (05/20/11 15:59:31)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
dict.c
rfda61d3 r351c535 60 60 /* Appends dictionary keys to a list. Duplicates the keys, 61 61 * so they will need to be freed by the caller. */ 62 intowl_dict_get_keys(const owl_dict *d, owl_list *l) {62 void owl_dict_get_keys(const owl_dict *d, owl_list *l) { 63 63 int i; 64 64 for (i=0; i<d->size; i++) { 65 65 owl_list_append_element(l, g_strdup(d->els[i].k)); 66 66 } 67 return(0);68 67 } 69 68
Note: See TracChangeset
for help on using the changeset viewer.