strpbrk1 strpbrk char *strpbrk(const char *s1, const char *s2) char *strpbrk(const char *s1, const char *s2) { while(*s1) if(strchr(s2, *s1++)) return (char*)--s1; return 0; } 2016. 7. 9. 이전 1 다음