aboutsummaryrefslogtreecommitdiff
path: root/libc/include/locale.yaml
blob: 3c3998eb07aa437c781b21f2cf4eb3fa5598563c (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
header: locale.h
header_template: locale.h.def
macros:
  - macro_name: "NULL"
    macro_header: null-macro.h
types:
  - type_name: locale_t
  - type_name: struct_lconv
functions:
  - name: localeconv
    standards:
      - stdc
    return_type: struct lconv *
    arguments:
      - type: void
  - name: duplocale
    standards:
      - stdc
    return_type: locale_t
    arguments:
      - type: locale_t
  - name: freelocale
    standards:
      - stdc
    return_type: void
    arguments:
      - type: locale_t
  - name: newlocale
    standards:
      - stdc
    return_type: locale_t
    arguments:
      - type: int
      - type: const char *
      - type: locale_t
  - name: setlocale
    standards:
      - stdc
    return_type: char *
    arguments:
      - type: int
      - type: const char *
  - name: uselocale
    standards:
      - stdc
    return_type: locale_t
    arguments:
      - type: locale_t