Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
strpbrk.c File Reference
#include <string.h>
Include dependency graph for strpbrk.c:

Go to the source code of this file.

Functions

char * strpbrk (const char *s, const char *b)
 

Function Documentation

◆ strpbrk()

char* strpbrk ( const char *  s,
const char *  b 
)

Definition at line 3 of file strpbrk.c.

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

References strcspn().