This file is indexed.

/usr/include/NASPRO/core-5/NASPRO/core/list.h is in libnacore-dev 0.4.0-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
/*
 * NASPRO - The NASPRO Architecture for Sound Processing
 * Core library
 *
 * Copyright (C) 2007-2010 NASPRO core development team
 *
 * See the COPYING file for license conditions.
 */

/*
   Title: Doubly-linked lists

   Doubly-linked lists.

   Through this single API two flavours of lists are offered: normal lists and
   auto-allocating lists.

   The most evident difference between them is that the latter's elements will
   contain automatically allocated copies of the inserted values (the pointed
   data is copied) while the former's elements will contain copies of the
   references to the given data (the pointer value is copied).

   Other differences that the user of this API should be aware of are specified
   in the documention of functions.

   No thread synchronization is performed by this API, i.e., it is not
   thread-safe to concurrently operate on a list unless you implement some
   external synchronization mechanism.
 */

#ifndef _NASPRO_CORE_LIST_H
#define _NASPRO_CORE_LIST_H

#ifndef _NASPRO_CORE_LIB_H
# error Only <NASPRO/core/lib.h> can be included directly.
#endif

NACORE_BEGIN_C_DECLS

/*
   Type: nacore_list

   Doubly-linked list.
 */
typedef struct _nacore_list *		nacore_list;

/*
   Type: nacore_list_elem

   Doubly-linked list element.
 */
typedef struct _nacore_list_elem *	nacore_list_elem;

/*
   Function: nacore_list_new()
   
   Creates a new list.

   Use NULL as gs_cb to create a normal list, otherwise (auto-allocating list)
   gs_cb will be called to determine the quantity of memory to allocate and copy
   for each insertion and value modification.

   Parameters:

     gs_cb		- Data size callback or NULL.

   Returns:

     Doubly-linked list or NULL if there was not enough memory.
 */
_NACORE_DEF nacore_list
nacore_list_new(nacore_get_size_cb gs_cb);

/*
   Function: nacore_list_free()

   Destroys a list and all its elements.

   If the list is auto-allocating, value copies inside each element are
   destroied too.

   In any case, before potentially being destroyed, each element value is passed
   to the free_cb callback, if one is given, as well as the specified extra
   data.

   Once this function is called, referring to list or any element it contains
   will cause undefined behavior. If the list is auto-allocating, the same is
   true for element values outside of the free_cb callback, if one is supplied.

   Parameters:

     list		- Doubly-linked list.
     free_cb		- Callback called for each list element or NULL.
     free_opaque	- Extra opaque data to be passed to free_cb or NULL.
 */
_NACORE_DEF void
nacore_list_free(nacore_list list, nacore_op_cb free_cb, void *free_opaque);

/*
   Function: nacore_list_get_n_elems()
   
   Gets the number of elements in a list.

   Parameters:

     list - Doubly-linked list.

   Returns:

     Number of elements in the list or 0 if the list is empty.
 */
_NACORE_DEF size_t
nacore_list_get_n_elems(nacore_list list);

/*
   Function: nacore_list_get_head()

   Returns the head (first element) of a list.

   Parameters:

     list - Doubly-linked list.

   Returns:

     Head of the list or NULL if the list is empty.
 */
_NACORE_DEF nacore_list_elem
nacore_list_get_head(nacore_list list);

/*
   Function: nacore_list_get_tail()

   Returns the tail (last element) of a list.

   Parameters:

     list - Doubly-linked list.

   Returns:

     Tail of the list or NULL if the list is empty.
 */
_NACORE_DEF nacore_list_elem
nacore_list_get_tail(nacore_list list);

/*
   Function: nacore_list_prepend()

   Creates a new list element and prepends it to a list.

   Parameters:

     list		- Doubly-linked list.
     gs_opaque		- Extra opaque data to be passed to the data size
			  callback or NULL.
     value		- The value to be contained in the element.

   Returns:

     New list element containing value or NULL if there was not enough memory.

   See also:

     <nacore_list_elem_prepend()>.
 */
_NACORE_DEF nacore_list_elem
nacore_list_prepend(nacore_list list, void *gs_opaque, void *value);

/*
   Function: nacore_list_append()

   Creates a new list element and appends it to a list.

   Parameters:

     list		- Doubly-linked list.
     gs_opaque		- Extra opaque data to be passed to the data size
			  callback or NULL.
     value		- The value to be contained in the element.

   Returns:

     New list element containing value or NULL if there was not enough memory.

   See also:

     <nacore_list_elem_append()>.
 */
_NACORE_DEF nacore_list_elem
nacore_list_append(nacore_list list, void *gs_opaque, void *value);

/*
   Function: nacore_list_insert_before()

   Creates a new list element and inserts it before another element in a list.

   Parameters:

     list		- Doubly-linked list.
     elem		- The element in the list that will follow the new
			  element.
     gs_opaque		- Extra opaque data to be passed to the data size
			  callback or NULL.
     value		- The value to be contained in the element.

   Returns:

     New list element containing value or NULL if there was not enough memory.

   See also:

     <nacore_list_elem_insert_before()>.
 */
_NACORE_DEF nacore_list_elem
nacore_list_insert_before(nacore_list list, nacore_list_elem elem,
			  void *gs_opaque, void *value);

/*
   Function: nacore_list_insert_after()

   Creates a new list element and inserts it after another element in a list.

   Parameters:

     list		- Doubly-linked list.
     elem		- The element in the list that will precede the new
			  element.
     gs_opaque		- Extra opaque data to be passed to the data size
			  callback or NULL.
     value		- The value to be contained in the element.

   Returns:

     New list element containing value or NULL if there was not enough memory.

   See also:

     <nacore_list_elem_insert_after()>.
 */
_NACORE_DEF nacore_list_elem
nacore_list_insert_after(nacore_list list, nacore_list_elem elem,
			 void *gs_opaque, void *value);

/*
   Function: nacore_list_move_before()

   Moves an element before another element in a list.

   If dest == src or if src immediately precedes dest already, the function
   does nothing.

   Parameters:

     list	- Doubly-linked list.
     dest	- The element before which src is to be moved.
     src	- The element to be moved.
 */
_NACORE_DEF void
nacore_list_move_before(nacore_list list, nacore_list_elem dest,
			nacore_list_elem src);

/*
   Function: nacore_list_move_after()

   Moves an element after another element in a list.

   If dest == src or if src immediately follows dest already, the function does
   nothing.

   Parameters:

     list	- Doubly-linked list.
     dest	- The element after which src is to be moved.
     src	- The element to be moved.
 */
_NACORE_DEF void
nacore_list_move_after(nacore_list list, nacore_list_elem dest,
		       nacore_list_elem src);

/*
   Function: nacore_list_pop()

   Removes an element from a list, destroys it and returns the value it
   contains.

   Once this function is called, referring to elem will cause undefined
   behavior.

   Parameters:

     list	- Doubly-linked list.
     elem	- List element to be removed.

   Returns:

     The value contained in the element being removed. If the list is
     auto-allocating the caller is in charge of free()ing the value.

   See also:

     <nacore_list_elem_pop()>.
 */
_NACORE_DEF void *
nacore_list_pop(nacore_list list, nacore_list_elem elem);

/*
   Function: nacore_list_find_first()

   Finds the first matching element inside a list.

   It starts from the list head by comparing values using the provided cmp_cb
   callback.

   If filter_cb is not NULL, it will be called along with filter_opaque when a
   matching element is found; if it is to be filtered out (i.e., filter_cb
   returns 0) the search will continue, etc.

   Parameters:

     list		- Doubly-linked list.
     cmp_cb		- Value comparison callback.
     cmp_opaque		- Extra opaque data to be passed to cmp_cb or NULL.
     filter_cb		- Value filtering callback or NULL.
     filter_opaque	- Extra opaque data to be passed to filter_cb or NULL.
     value		- The value to look for.

   Returns:

     List element containing the desired value or NULL if no such element was
     found.
 */
_NACORE_DEF nacore_list_elem
nacore_list_find_first(nacore_list list, nacore_cmp_cb cmp_cb, void *cmp_opaque,
		       nacore_filter_cb filter_cb, void *filter_opaque,
		       void *value);

/*
   Function: nacore_list_find_last()

   Finds the last matching element inside a list.

   It start from the list tail by comparing values using the provided cmp_cb
   callback.

   If filter_cb is not NULL, it will be called along with filter_opaque when a
   matching element is found; if it is to be filtered out (i.e., filter_cb
   returns 0) the search will continue, etc.

   Parameters:

     list		- Doubly-linked list.
     cmp_cb		- Value comparison callback.
     cmp_opaque		- Extra opaque data to be passed to cmp_cb or NULL.
     filter_cb		- Value filtering callback or NULL.
     filter_opaque	- Extra opaque data to be passed to filter_cb or NULL.
     value		- The value to look for.

   Returns:

     List element containing the desired value or NULL if no such element was
     found.
 */
_NACORE_DEF nacore_list_elem
nacore_list_find_last(nacore_list list, nacore_cmp_cb cmp_cb, void *cmp_opaque,
		      nacore_filter_cb filter_cb, void *filter_opaque,
		      void *value);

/*
   Function: nacore_list_find_before()

   Finds the first matching element inside a list going backwards before another
   given element.

   It does this by comparing values using the provided cmp_cb callback.

   If filter_cb is not NULL, it will be called along with filter_opaque when a
   matching element is found; if it is to be filtered out (i.e., filter_cb
   returns 0) the search will continue, etc.

   Parameters:

     list		- Doubly-linked list.
     elem		- The element before which the search happens.
     cmp_cb		- Value comparison callback.
     cmp_opaque		- Extra opaque data to be passed to cmp_cb or NULL.
     filter_cb		- Value filtering callback or NULL.
     filter_opaque	- Extra opaque data to be passed to filter_cb or NULL.
     value		- The value to look for.

   Returns:

     List element containing the desired value or NULL if no such element was
     found.
 */
_NACORE_DEF nacore_list_elem
nacore_list_find_before(nacore_list list, nacore_list_elem elem,
			nacore_cmp_cb cmp_cb, void *cmp_opaque,
			nacore_filter_cb filter_cb, void *filter_opaque,
			void *value);

/*
   Function: nacore_list_find_after()

   Finds the first matching element inside a list going forwards after another
   given element.

   It does this by comparing values using the provided cmp_cb callback.

   If filter_cb is not NULL, it will be called along with filter_opaque when a
   matching element is found; if it is to be filtered out (i.e., filter_cb
   returns 0) the search will continue, etc.

   Parameters:

     list		- Doubly-linked list.
     elem		- The element before which the search happens.
     cmp_cb		- Value comparison callback.
     cmp_opaque		- Extra opaque data to be passed to cmp_cb or NULL.
     filter_cb		- Value filtering callback or NULL.
     filter_opaque	- Extra opaque data to be passed to filter_cb or NULL.
     value		- The value to look for.

   Returns:

     List element containing the desired value or NULL if no such element was
     found.
 */
_NACORE_DEF nacore_list_elem
nacore_list_find_after(nacore_list list, nacore_list_elem elem,
		       nacore_cmp_cb cmp_cb, void *cmp_opaque,
		       nacore_filter_cb filter_cb, void *filter_opaque,
		       void *value);

/*
   Function: nacore_list_dup()

   Duplicates a list.

   gs_cb is used as in <nacore_list_new()>, hence if it is not NULL the new list
   will be auto-allocating.

   If filter_cb is not NULL, it will be called along with filter_opaque for each
   element; if it is to be filtered out (i.e., filter_cb returns 0) the element
   will not be included in the resulting list.

   After the creation of each new element dup_cb is called, if such a callback
   is given, passing it the value (its copy if the new list is auto-allocating)
   and the specified extra data.

   Parameters:

     list		- Doubly-linked list.
     gs_cb		- Data size callback or NULL.
     gs_opaque		- Extra opaque data to be passed to gs_cb or NULL.
     filter_cb		- Value filtering callback or NULL.
     filter_opaque	- Extra opaque data to be passed to filter_cb or NULL.
     dup_cb		- Callback called for each new list element or NULL.
     dup_opaque		- Extra opaque data to be passed to dup_cb or NULL.

   Returns:

     Doubly-linked list or NULL if there was not enough memory.
 */
_NACORE_DEF nacore_list
nacore_list_dup(nacore_list list, nacore_get_size_cb gs_cb, void *gs_opaque,
		nacore_filter_cb filter_cb, void *filter_opaque,
		nacore_op_cb dup_cb, void *dup_opaque);

/*
   Function: nacore_list_merge()

   Merges two lists by appending the elements of src to dest.

   The two lists must have been created with the same data size callback (or
   NULL in both cases).

   Once this function is called, referring to src or dest will cause undefined
   behavior.

   Parameters:

     dest	- First doubly-linked list.
     src	- Second doubly-linked list.

   Returns:

     The doubly-linked list containing elements from both lists.
 */
_NACORE_DEF nacore_list
nacore_list_merge(nacore_list dest, nacore_list src);

/*
   Function: nacore_list_dump()

   Dumps the structure and content of a list on stderr.

   Never rely on the exact output of this function, it is intended to be used
   solely for debugging purposes.

   Parameters:

     list		- Doubly-linked list.
     to_string_cb	- Callback returning a textual description of a value or
 			  NULL.
     to_string_opaque	- Extra opaque data to be passed to to_string_cb or
			  NULL.
 */
_NACORE_DEF void
nacore_list_dump(nacore_list list, nacore_to_string_cb to_string_cb,
		 void *to_string_opaque);

/*
   Function: nacore_list_elem_new()

   Creates a new list element without adding it to a list.

   Parameters:

     value	- The value to be contained in the element.

   Returns:

     New list element containing value or NULL if there was not enough memory.
 */
_NACORE_DEF nacore_list_elem
nacore_list_elem_new(void *value);

/*
   Function: nacore_list_elem_free()

   Destroys a list element.

   Once this function is called, referring to elem will cause undefined
   behavior.

   Only to be used when the element is not part of a list.

   Parameters:

     elem	- List element.
 */
_NACORE_DEF void
nacore_list_elem_free(nacore_list_elem elem);

/*
   Function: nacore_list_elem_prepend()

   Prepends a list element to a list.

   Only to be used when the element is not part of a list.

   Beware of auto-allocating lists...

   Parameters:

     list	- Doubly-linked list.
     elem	- List element.

   See also:

     <nacore_list_prepend()>.
 */
_NACORE_DEF void
nacore_list_elem_prepend(nacore_list list, nacore_list_elem elem);

/*
   Function: nacore_list_elem_append()

   Appends a list element to a list.

   Only to be used when the element is not part of a list.

   Beware of auto-allocating lists...

   Parameters:

     list	- Doubly-linked list.
     elem	- List element.

   See also:

     <nacore_list_append()>.
 */
_NACORE_DEF void
nacore_list_elem_append(nacore_list list, nacore_list_elem elem);

/*
   Function: nacore_list_elem_insert_before()

   Inserts a list element before another element in a list.

   Only to be used when the element to be inserted is not part of a list.

   Beware of auto-allocating lists...

   Parameters:

     list	- Doubly-linked list.
     elem	- List element.

   See also:

     <nacore_list_insert_before()>.
 */
_NACORE_DEF void
nacore_list_elem_insert_before(nacore_list list, nacore_list_elem elem,
			       nacore_list_elem before);

/*
   Function: nacore_list_elem_insert_after()

   Inserts a list element after another element in a list.

   Only to be used when the element to be inserted is not part of a list.

   Beware of auto-allocating lists...

   Parameters:

     list	- Doubly-linked list.
     elem	- List element.

   See also:

     <nacore_list_insert_after()>.
 */
_NACORE_DEF void
nacore_list_elem_insert_after(nacore_list list, nacore_list_elem elem,
			      nacore_list_elem after);

/*
   Function: nacore_list_elem_pop()

   Removes an element from a list without destroying it.

   Parameters:

     list	- Doubly-linked list.
     elem	- List element.

   See also:

     <nacore_list_pop()>.
 */
_NACORE_DEF void
nacore_list_elem_pop(nacore_list list, nacore_list_elem elem);

/*
   Function: nacore_list_elem_get_value()

   Gets the value contained in a list element.

   The list parameter is currently unused. It is however good if you set it to
   NULL only when elem is not part of a list.

   Parameters:

     list	- Doubly-linked list the element belongs to or NULL.
     elem	- List element.

   Returns:

     The value contained in elem.
 */
_NACORE_DEF void *
nacore_list_elem_get_value(nacore_list list, nacore_list_elem elem);

/*
   Function: nacore_list_elem_set_value()

   Sets the value contained in a list element.

   If the element is not part of a list set list as NULL, in which case this
   function shall behave as if the element is part of a normal list.

   If the list is auto-allocating, first the old value is free()d, then a copy
   of the new value is put into the element. Before potentially being destroyed,
   the element value is passed to the free_cb callback, if one is given, as well
   as the specified extra data.

   Parameters:

     list		- Doubly-linked list the element belongs to or NULL.
     elem		- List element.
     free_cb		- Callback called to destroy element value or NULL.
     free_opaque	- Extra opaque data to be passed to free_cb or NULL.
     gs_opaque		- Extra opaque data to be passed to the data size
			  callback or NULL.
     value		- The value.

   Returns:

     0 on success or ENOMEM if there was not enough memory (auto-allocating
     lists only).
 */
_NACORE_DEF int
nacore_list_elem_set_value(nacore_list list, nacore_list_elem elem,
			   nacore_op_cb free_cb, void *free_opaque,
			   void *gs_opaque, void *value);

/*
   Function: nacore_list_elem_get_prev()

   Gets the previous element with regard to the given element in a list.

   Parameters:

     list	- Doubly-linked list the given element belongs to.
     elem	- List element.

   Returns:

     Previous element w.r.t. the given element or NULL if there is none (i.e.,
     elem is the head of the list).
 */
_NACORE_DEF nacore_list_elem
nacore_list_elem_get_prev(nacore_list list, nacore_list_elem elem);

/*
   Function: nacore_list_elem_get_next()

   Gets the following element with regard to the given element in a list.

   Parameters:

     list	- Doubly-linked list the given element belongs to.
     elem	- List element.

   Returns:

     Following element w.r.t. the given element or NULL if there is none (i.e.,
     elem is the tail of the list).
 */
_NACORE_DEF nacore_list_elem
nacore_list_elem_get_next(nacore_list list, nacore_list_elem elem);

NACORE_END_C_DECLS

#endif