Lines Matching refs:character
83 to `output` (plus a NUL), `input` is read until reaching a NUL character. This
89 Similarly to `strlcpy`, the `strlcpy_ret` will search for the NUL character
94 When enabling -fbounds-safety, character buffers and NUL-terminated strings are
99 * What is the correct way to transform a character buffer into a NUL-terminated
104 The most common use of character buffers is to build a string, and then this
109 * `strbuf` functions, explicitly accepting character buffers and a distinct
120 * `strl` (new) functions, accepting _one_ character buffer of a known size and
125 `strbuf` functions additionally all have overloads accepting character arrays
135 NUL-terminated string. NUL-terminated character pointers are generally not
137 any NUL character found through a `__null_terminated` pointer access will result
175 a character array such that you get a NUL-terminated view of it. For instance,
199 to convert a character array to a `__null_terminated` string if you need to
200 perform more manipulations. (`p_start` is a pointer to the first character, and
201 `p_nul` is a pointer to the NUL character in that string.) For instance, if you