| 17 | namespace LIBC_NAMESPACE_DECL { |
| 18 | |
| 19 | LLVM_LIBC_FUNCTION(char *, strsep, |
| 20 | (char **__restrict stringp, const char *__restrict delim)) { |
| 21 | LIBC_CRASH_ON_NULLPTR(stringp); |
| 22 | if (!*stringp) |
| 23 | return nullptr; |
| 24 | LIBC_CRASH_ON_NULLPTR(delim); |
| 25 | return internal::string_token<false>(*stringp, delim, stringp); |
| 26 | } |
| 27 | |
| 28 | } // namespace LIBC_NAMESPACE_DECL |
nothing calls this directly
no outgoing calls
no test coverage detected