The .yaml files should live next to the corresponding .h.def files in libc/include/, rather than next to the implementation of the tool in libc/utils/hdrgen/. As with the .h.def files, there is no need for a yaml/ subdirectory under include/. This simpler layout is more natural for maintenance and also simplifies build integration outside the LLVM CMake build.
59 lines
1.1 KiB
YAML
59 lines
1.1 KiB
YAML
header: strings.h
|
|
macros: []
|
|
types: []
|
|
enums: []
|
|
objects: []
|
|
functions:
|
|
- name: bcmp
|
|
standards:
|
|
- llvm_libc_ext
|
|
return_type: int
|
|
arguments:
|
|
- type: const void *
|
|
- type: const void *
|
|
- type: size_t
|
|
- name: bcopy
|
|
standards:
|
|
- llvm_libc_ext
|
|
return_type: void
|
|
arguments:
|
|
- type: const void *
|
|
- type: void *
|
|
- type: size_t
|
|
- name: bzero
|
|
standards:
|
|
- llvm_libc_ext
|
|
return_type: void
|
|
arguments:
|
|
- type: void *
|
|
- type: size_t
|
|
- name: index
|
|
standards:
|
|
- BSDExtensions
|
|
return_type: char *
|
|
arguments:
|
|
- type: const char *
|
|
- type: int
|
|
- name: rindex
|
|
standards:
|
|
- BSDExtensions
|
|
return_type: char *
|
|
arguments:
|
|
- type: const char *
|
|
- type: int
|
|
- name: strcasecmp
|
|
standards:
|
|
- BSDExtensions
|
|
return_type: int
|
|
arguments:
|
|
- type: const char *
|
|
- type: const char *
|
|
- name: strncasecmp
|
|
standards:
|
|
- BSDExtensions
|
|
return_type: int
|
|
arguments:
|
|
- type: const char *
|
|
- type: const char *
|
|
- type: size_t
|