1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

added comment to explain list_lookup()

This commit is contained in:
Steffen Vogel 2015-12-11 18:20:04 +01:00
parent b4940a2546
commit cba504ac21

View file

@ -63,6 +63,13 @@ void list_push(struct list *l, void *p);
void list_remove(struct list *l, void *p);
/** Search the list for an element whose first element is a character array which matches name.
*
* List elements should be of the following form:
*
* struct obj {
* char *name;
* // more members
* }
*
* @see Only possible because of §1424 of http://c0x.coding-guidelines.com/6.7.2.1.html
*/