aboutsummaryrefslogtreecommitdiff
path: root/libc/include/search.yaml
blob: 8a3a0c50af60fd99d06d51b6669d48c7741cda5a (plain)
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
header: search.h
standards:
  - posix
types:
  - type_name: ACTION
  - type_name: ENTRY
  - type_name: VISIT
  - type_name: __search_compare_t
  - type_name: struct_hsearch_data
enums: []
objects: []
functions:
  - name: hcreate
    standards:
      - posix
    return_type: int
    arguments:
      - type: size_t
  - name: hcreate_r
    standards: gnu
    return_type: int
    arguments:
      - type: size_t
      - type: struct hsearch_data *
  - name: hdestroy
    standards: gnu
    return_type: void
    arguments: []
  - name: hdestroy_r
    standards:
      - posix
    return_type: void
    arguments:
      - type: struct hsearch_data *
  - name: hsearch
    standards:
      - posix
    return_type: ENTRY *
    arguments:
      - type: ENTRY
      - type: ACTION
  - name: hsearch_r
    standards: gnu
    return_type: int
    arguments:
      - type: ENTRY
      - type: ACTION
      - type: ENTRY * *
      - type: struct hsearch_data *
  - name: insque
    standards:
      - posix
    return_type: void
    arguments:
      - type: void *
      - type: void *
  - name: remque
    standards:
      - posix
    return_type: void
    arguments:
      - type: void *
  - name: lfind
    standards:
      - posix
    return_type: void *
    arguments:
      - type: const void *
      - type: const void *
      - type: size_t *
      - type: size_t
      - type: __search_compare_t
  - name: lsearch
    standards:
      - posix
    return_type: void *
    arguments:
      - type: const void *
      - type: void *
      - type: size_t *
      - type: size_t
      - type: __search_compare_t