Data Fields | |
const char * | str |
list_entry * | next |
|
Next entry in the linked list, or NULL if no more.
|
|
The string. The "const" is only to discourage modification, you can actually change it if you *really* want to. You can even freez() it and replace it with another malloc()d string. If you replace it with NULL, the list functions will work, just be careful next time you iterate through the list in your own code. FIXME: Should we remove the "const"? |