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:
parent
b4940a2546
commit
cba504ac21
1 changed files with 7 additions and 0 deletions
|
@ -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
|
||||
*/
|
||||
|
|
Loading…
Add table
Reference in a new issue