# HG changeset patch # User Matti Hamalainen # Date 1456383280 -7200 # Node ID 19d4b3a1a37cf32f007dbd33aa8cf8b70a7d7c61 # Parent 5c5b3919263deac5c0449065f28c71bf0e37f1ed Add few comments. diff -r 5c5b3919263d -r 19d4b3a1a37c th_datastruct.h --- a/th_datastruct.h Thu Feb 25 08:54:31 2016 +0200 +++ b/th_datastruct.h Thu Feb 25 08:54:40 2016 +0200 @@ -20,8 +20,8 @@ */ typedef struct _th_llist_t { - void *data; - size_t num; + void *data; // Pointer to data payload of this node + size_t num; // Number of nodes in the list, meaningful ONLY in the current root node of the list struct _th_llist_t *prev, *next; } th_llist_t;