This shows you the differences between two versions of the page.
|
c:string.h:strpbrk [2013/01/22 22:02] 127.0.0.1 external edit |
c:string.h:strpbrk [2024/02/16 01:06] (current) |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| <code c> | <code c> | ||
| - | + | #include <string.h> | |
| - | #include <string.h> | + | char *strpbrk(char *s1, const char *s2); |
| - | char *strpbrk(char *s1, const char *s2); | + | |
| </code> | </code> | ||
| finds the first occurrence of a character. | finds the first occurrence of a character. | ||