2024-06-28 08:59:08 -07:00
|
|
|
header: strings.h
|
2025-07-18 11:35:09 -07:00
|
|
|
standards:
|
|
|
|
|
- bsd
|
|
|
|
|
- posix
|
2025-01-24 13:39:20 -08:00
|
|
|
types:
|
|
|
|
|
- type_name: size_t
|
2025-03-12 10:49:04 +08:00
|
|
|
- type_name: locale_t
|
2024-06-28 08:59:08 -07:00
|
|
|
functions:
|
2024-08-09 11:27:36 -07:00
|
|
|
- name: bcmp
|
|
|
|
|
standards:
|
2025-07-18 11:35:09 -07:00
|
|
|
- bsd
|
2024-08-09 11:27:36 -07:00
|
|
|
return_type: int
|
|
|
|
|
arguments:
|
|
|
|
|
- type: const void *
|
|
|
|
|
- type: const void *
|
|
|
|
|
- type: size_t
|
2024-06-28 08:59:08 -07:00
|
|
|
- name: bcopy
|
2024-08-05 12:48:05 -07:00
|
|
|
standards:
|
2025-07-18 11:35:09 -07:00
|
|
|
- bsd
|
2024-06-28 08:59:08 -07:00
|
|
|
return_type: void
|
|
|
|
|
arguments:
|
|
|
|
|
- type: const void *
|
|
|
|
|
- type: void *
|
|
|
|
|
- type: size_t
|
|
|
|
|
- name: bzero
|
2024-08-05 12:48:05 -07:00
|
|
|
standards:
|
2025-07-18 11:35:09 -07:00
|
|
|
- bsd
|
2024-06-28 08:59:08 -07:00
|
|
|
return_type: void
|
|
|
|
|
arguments:
|
|
|
|
|
- type: void *
|
|
|
|
|
- type: size_t
|
2025-03-08 09:31:18 +08:00
|
|
|
- name: ffs
|
|
|
|
|
standards:
|
2025-07-18 11:35:09 -07:00
|
|
|
- posix
|
2025-03-08 09:31:18 +08:00
|
|
|
return_type: int
|
|
|
|
|
arguments:
|
|
|
|
|
- type: int
|
|
|
|
|
- name: ffsl
|
|
|
|
|
standards:
|
2025-07-18 11:35:09 -07:00
|
|
|
- posix
|
2025-03-08 09:31:18 +08:00
|
|
|
return_type: int
|
|
|
|
|
arguments:
|
|
|
|
|
- type: long
|
|
|
|
|
- name: ffsll
|
|
|
|
|
standards:
|
2025-07-18 11:35:09 -07:00
|
|
|
- posix
|
2025-03-08 09:31:18 +08:00
|
|
|
return_type: int
|
|
|
|
|
arguments:
|
|
|
|
|
- type: long long
|
2024-08-09 11:27:36 -07:00
|
|
|
- name: index
|
2024-08-05 12:48:05 -07:00
|
|
|
standards:
|
2025-07-18 11:35:09 -07:00
|
|
|
- bsd
|
2024-08-09 11:27:36 -07:00
|
|
|
return_type: char *
|
2024-06-28 08:59:08 -07:00
|
|
|
arguments:
|
2024-08-09 11:27:36 -07:00
|
|
|
- type: const char *
|
|
|
|
|
- type: int
|
|
|
|
|
- name: rindex
|
2024-08-05 12:48:05 -07:00
|
|
|
standards:
|
2025-07-18 11:35:09 -07:00
|
|
|
- bsd
|
2024-08-09 11:27:36 -07:00
|
|
|
return_type: char *
|
2024-06-28 08:59:08 -07:00
|
|
|
arguments:
|
|
|
|
|
- type: const char *
|
2024-08-09 11:27:36 -07:00
|
|
|
- type: int
|
|
|
|
|
- name: strcasecmp
|
2024-06-28 08:59:08 -07:00
|
|
|
return_type: int
|
|
|
|
|
arguments:
|
|
|
|
|
- type: const char *
|
|
|
|
|
- type: const char *
|
2025-03-12 10:49:04 +08:00
|
|
|
- name: strcasecmp_l
|
|
|
|
|
return_type: int
|
|
|
|
|
arguments:
|
|
|
|
|
- type: const char *
|
|
|
|
|
- type: const char *
|
|
|
|
|
- type: locale_t
|
2024-08-09 11:27:36 -07:00
|
|
|
- name: strncasecmp
|
|
|
|
|
return_type: int
|
2024-06-28 08:59:08 -07:00
|
|
|
arguments:
|
|
|
|
|
- type: const char *
|
|
|
|
|
- type: const char *
|
2024-08-09 11:27:36 -07:00
|
|
|
- type: size_t
|
2025-03-12 10:49:04 +08:00
|
|
|
- name: strncasecmp_l
|
|
|
|
|
return_type: int
|
|
|
|
|
arguments:
|
|
|
|
|
- type: const char *
|
|
|
|
|
- type: const char *
|
|
|
|
|
- type: size_t
|
|
|
|
|
- type: locale_t
|