반응형
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; }
반응형
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; }