Subversion Repositories Kolibri OS

Rev

Rev 3254 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3254 Rev 4251
Line 105... Line 105...
105
 * Position and name of the struct list field is irrelevant.
105
 * Position and name of the struct list field is irrelevant.
106
 * There are no requirements that elements of a list are of the same type.
106
 * There are no requirements that elements of a list are of the same type.
107
 * There are no requirements for a list head, any struct list can be a list
107
 * There are no requirements for a list head, any struct list can be a list
108
 * head.
108
 * head.
109
 */
109
 */
-
 
110
 
110
struct list {
111
struct list {
111
    struct list *next, *prev;
112
    struct list *next, *prev;
112
};
113
};
Line 113... Line 114...
113
 
114