Skip to content

Commit cad6ebb

Browse files
committed
LIST: Remove old comments
Signed-off-by: Stefan Weil <sw@weilnetz.de>
1 parent 2a2bc8a commit cad6ebb

File tree

1 file changed

+0
-83
lines changed

1 file changed

+0
-83
lines changed

src/cutil/oldlist.h

-83
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,6 @@
44
* File: oldlist.h (Formerly list.h)
55
* Description: List processing procedures declarations.
66
* Author: Mark Seaman, SW Productivity
7-
* Created: Fri Oct 16 14:37:00 1987
8-
* Modified: Wed Dec 5 15:43:17 1990 (Mark Seaman) marks@hpgrlt
9-
* Language: C
10-
* Package: N/A
11-
* Status: Reusable Software Component
127
*
138
* (c) Copyright 1987, Hewlett-Packard Company.
149
** Licensed under the Apache License, Version 2.0 (the "License");
@@ -275,82 +270,4 @@ LIST search(LIST list, void *key, int_compare is_equal);
275270

276271
LIST search(LIST list, void *key, TessResultCallback2<int, void*, void*>*);
277272

278-
/*
279-
#if defined(__STDC__) || defined(__cplusplus)
280-
# define _ARGS(s) s
281-
#else
282-
# define _ARGS(s) ()
283-
#endif
284-
285-
typedef void (*destructor) _ARGS((LIST l));
286-
287-
typedef LIST (*list_proc) _ARGS((LIST a));
288-
289-
int count
290-
_ARGS((LIST var_list));
291-
292-
LIST delete_d
293-
_ARGS((LIST list,
294-
LIST key,
295-
int_compare is_equal));
296-
297-
LIST destroy
298-
_ARGS((LIST list));
299-
300-
LIST destroy_nodes
301-
_ARGS((LIST list,
302-
void_dest destructor));
303-
304-
void insert
305-
_ARGS((LIST list,
306-
LIST node));
307-
308-
int is_same_node
309-
_ARGS((LIST s1,
310-
LIST s2));
311-
312-
int is_same
313-
_ARGS((LIST s1,
314-
LIST s2));
315-
316-
LIST join
317-
_ARGS((LIST list1,
318-
LIST list2));
319-
320-
LIST last
321-
_ARGS((LIST var_list));
322-
323-
LIST nth_cell
324-
_ARGS((LIST var_list,
325-
int item_num));
326-
327-
LIST pop
328-
_ARGS((LIST list));
329-
330-
LIST push
331-
_ARGS((LIST list,
332-
LIST element));
333-
334-
LIST push_last
335-
_ARGS((LIST list,
336-
LIST item));
337-
338-
LIST reverse
339-
_ARGS((LIST list));
340-
341-
LIST reverse_d
342-
_ARGS((LIST list));
343-
344-
LIST s_adjoin
345-
_ARGS((LIST var_list,
346-
LIST variable,
347-
int_compare compare));
348-
349-
LIST search
350-
_ARGS((LIST list,
351-
LIST key,
352-
int_compare is_equal));
353-
354-
#undef _ARGS
355-
*/
356273
#endif

0 commit comments

Comments
 (0)