Subversion Repositories HelenOS

Rev

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

Rev 1787 Rev 1866
Line 30... Line 30...
30
 * @{
30
 * @{
31
 */
31
 */
32
/** @file
32
/** @file
33
 */
33
 */
34
 
34
 
35
#ifndef __LIST_H__
35
#ifndef LIBC_LIST_H_
36
#define __LIST_H__
36
#define LIBC_LIST_H_
37
 
37
 
38
#include<unistd.h>
38
#include <unistd.h>
39
 
39
 
40
#ifndef true
40
#ifndef true
41
# define true 1
41
# define true 1
Line 188... Line 188...
188
extern int list_member(const link_t *link, const link_t *head);
188
extern int list_member(const link_t *link, const link_t *head);
189
extern void list_concat(link_t *head1, link_t *head2);
189
extern void list_concat(link_t *head1, link_t *head2);
190
 
190
 
191
#endif
191
#endif
192
 
192
 
193
 
-
 
194
 /** @}
193
/** @}
195
 */
194
 */
196
 
-
 
197
 
-