From 58dc73314b6508121ca094bbcf00612fe19ed69f Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Fri, 2 Dec 2011 08:43:45 +1000 Subject: [PATCH] include: point to the tests in list.c as examples Even with the documentation, the list.c tests are the best examples. Signed-off-by: Peter Hutterer Reviewed-by: Chase Douglas --- include/list.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/list.h b/include/list.h index 73ff0bee9..733a579c0 100644 --- a/include/list.h +++ b/include/list.h @@ -28,6 +28,7 @@ /** * @file Classic doubly-link circular list implementation. + * For real usage examples of the linked list, see the file test/list.c * * Example: * We need to keep a list of struct foo in the parent struct bar, i.e. what