Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
strpbrk.c
Go to the documentation of this file.
1
#include <
string.h
>
2
3
char
*
strpbrk
(
const
char
* s,
const
char
* b)
4
{
5
s +=
strcspn
(s, b);
6
return
*s ? (
char
*)(uintptr_t)s : 0;
7
}
strcspn
size_t strcspn(const char *, const char *)
Definition:
strcspn.c:8
string.h
strpbrk
char * strpbrk(const char *s, const char *b)
Definition:
strpbrk.c:3
src
string
strpbrk.c
Generated by
1.8.15