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 }
size_t strcspn(const char *, const char *)
Definition: strcspn.c:8
char * strpbrk(const char *s, const char *b)
Definition: strpbrk.c:3