URI: 
       strpbrk.3 - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
       strpbrk.3 (497B)
       ---
            1 .TH strpbrk 3
            2 .SH NAME
            3 strpbrk - scan a string for a byte
            4 .SH SYNOPSIS
            5 #include <string.h>
            6 
            7 char *strpbrk(const char *s1, const char *s2)
            8 .SH DESCRIPTION
            9 The
           10 .BR strpbrk ()
           11 function locates the first occurence
           12 in the string pointed to by
           13 .I s1
           14 of any character from
           15 the string pointed to by
           16 .IR s2 .
           17 .SH RETURN VALUE
           18 The
           19 .BR strpbrk ()
           20 function shall return a pointer to the character in
           21 .I s1
           22 or a null pointer if
           23 .I s2
           24 does not occur in
           25 .IR s1 .
           26 .SH STANDARDS
           27 ISO/IEC 9899:1999 Section 7.21.5.4