summaryrefslogtreecommitdiff
path: root/libc/include/strings.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'libc/include/strings.yaml')
-rw-r--r--libc/include/strings.yaml59
1 files changed, 59 insertions, 0 deletions
diff --git a/libc/include/strings.yaml b/libc/include/strings.yaml
new file mode 100644
index 000000000000..e672dca6a94d
--- /dev/null
+++ b/libc/include/strings.yaml
@@ -0,0 +1,59 @@
+header: strings.h
+header_template: strings.h.def
+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