Implemented wcsnlen and tests for the function. --------- Co-authored-by: Sriya Pratipati <sriyap@google.com>
214 lines
4.3 KiB
YAML
214 lines
4.3 KiB
YAML
header: wchar.h
|
|
header_template: wchar.h.def
|
|
macros:
|
|
- macro_name: NULL
|
|
macro_header: null-macro.h
|
|
types:
|
|
- type_name: size_t
|
|
- type_name: wint_t
|
|
- type_name: wchar_t
|
|
- type_name: mbstate_t
|
|
enums: []
|
|
objects: []
|
|
functions:
|
|
- name: wcslen
|
|
standards:
|
|
- stdc
|
|
return_type: size_t
|
|
arguments:
|
|
- type: const wchar_t *
|
|
- name: wcsnlen
|
|
standards:
|
|
- stdc
|
|
return_type: size_t
|
|
arguments:
|
|
- type: const wchar_t *
|
|
- type: size_t
|
|
- name: wctob
|
|
standards:
|
|
- stdc
|
|
return_type: int
|
|
arguments:
|
|
- type: wint_t
|
|
- name: btowc
|
|
standards:
|
|
- stdc
|
|
return_type: wint_t
|
|
arguments:
|
|
- type: int
|
|
- name: mbrtowc
|
|
standards:
|
|
- stdc
|
|
return_type: size_t
|
|
arguments:
|
|
- type: wchar_t *__restrict
|
|
- type: const char *__restrict
|
|
- type: size_t
|
|
- type: mbstate_t *__restrict
|
|
- name: mbtowc
|
|
standards:
|
|
- stdc
|
|
return_type: int
|
|
arguments:
|
|
- type: wchar_t *__restrict
|
|
- type: const char *__restrict
|
|
- type: size_t
|
|
- name: wmemset
|
|
standards:
|
|
- stdc
|
|
return_type: wchar_t*
|
|
arguments:
|
|
- type: wchar_t*
|
|
- type: wchar_t
|
|
- type: size_t
|
|
- name: wcschr
|
|
standards:
|
|
- stdc
|
|
return_type: const wchar_t *
|
|
arguments:
|
|
- type: const wchar_t *
|
|
- type: wchar_t
|
|
- name: wcsncmp
|
|
standards:
|
|
- stdc
|
|
return_type: int
|
|
arguments:
|
|
- type: const wchar_t *
|
|
- type: const wchar_t *
|
|
- type: size_t
|
|
- name: wcscmp
|
|
standards:
|
|
- stdc
|
|
return_type: int
|
|
arguments:
|
|
- type: const wchar_t *
|
|
- type: const wchar_t *
|
|
- name: wcspbrk
|
|
standards:
|
|
- stdc
|
|
return_type: const wchar_t *
|
|
arguments:
|
|
- type: const wchar_t *
|
|
- type: const wchar_t *
|
|
- name: wcsrchr
|
|
standards:
|
|
- stdc
|
|
return_type: const wchar_t *
|
|
arguments:
|
|
- type: const wchar_t *
|
|
- type: wchar_t
|
|
- name: wcsspn
|
|
standards:
|
|
- stdc
|
|
return_type: size_t
|
|
arguments:
|
|
- type: const wchar_t *
|
|
- type: const wchar_t *
|
|
- name: wmemcmp
|
|
standards:
|
|
- stdc
|
|
return_type: int
|
|
arguments:
|
|
- type: const wchar_t *
|
|
- type: const wchar_t *
|
|
- type: size_t
|
|
- name: wmemchr
|
|
standards:
|
|
- stdc
|
|
return_type: const wchar_t *
|
|
arguments:
|
|
- type: const wchar_t *
|
|
- type: wchar_t
|
|
- type: size_t
|
|
- name: wmempcpy
|
|
standards:
|
|
- gnu
|
|
return_type: wchar_t *
|
|
arguments:
|
|
- type: wchar_t *
|
|
- type: const wchar_t *
|
|
- type: size_t
|
|
- name: wmemcpy
|
|
standards:
|
|
- stdc
|
|
return_type: wchar_t *
|
|
arguments:
|
|
- type: wchar_t *__restrict
|
|
- type: const wchar_t *__restrict
|
|
- type: size_t
|
|
- name: wmemmove
|
|
standards:
|
|
- stdc
|
|
return_type: wchar_t *
|
|
arguments:
|
|
- type: wchar_t *
|
|
- type: const wchar_t *
|
|
- type: size_t
|
|
- name: wcsncpy
|
|
standards:
|
|
- stdc
|
|
return_type: wchar_t *
|
|
arguments:
|
|
- type: wchar_t *__restrict
|
|
- type: const wchar_t *__restrict
|
|
- type: size_t
|
|
- name: wcscat
|
|
standards:
|
|
- stdc
|
|
return_type: wchar_t *
|
|
arguments:
|
|
- type: wchar_t *__restrict
|
|
- type: const wchar_t *__restrict
|
|
- name: wcsstr
|
|
standards:
|
|
- stdc
|
|
return_type: const wchar_t *
|
|
arguments:
|
|
- type: const wchar_t *
|
|
- type: const wchar_t *
|
|
- name: wcsncat
|
|
standards:
|
|
- stdc
|
|
return_type: wchar_t *
|
|
arguments:
|
|
- type: wchar_t *__restrict
|
|
- type: const wchar_t *__restrict
|
|
- type: size_t
|
|
- name: wcrtomb
|
|
standards:
|
|
- stdc
|
|
return_type: size_t
|
|
arguments:
|
|
- type: char *__restrict
|
|
- type: wchar_t
|
|
- type: mbstate_t *__restrict
|
|
- name: wctomb
|
|
standards:
|
|
- stdc
|
|
return_type: int
|
|
arguments:
|
|
- type: char *
|
|
- type: wchar_t
|
|
- name: wcscpy
|
|
standards:
|
|
- stdc
|
|
return_type: wchar_t *
|
|
arguments:
|
|
- type: wchar_t *__restrict
|
|
- type: const wchar_t *__restrict
|
|
- name: wcpcpy
|
|
standards:
|
|
- stdc
|
|
return_type: wchar_t *
|
|
arguments:
|
|
- type: wchar_t *__restrict
|
|
- type: const wchar_t *__restrict
|
|
- name: wcpncpy
|
|
standards:
|
|
- stdc
|
|
return_type: wchar_t *
|
|
arguments:
|
|
- type: wchar_t *__restrict
|
|
- type: const wchar_t *__restrict
|
|
- type: size_t
|