iBoot/lib/libc/strpbrk.c

29 lines
616 B
C

/*
* Copyright (C) 2006 Apple Computer, Inc. All rights reserved.
*
* This document is the property of Apple Computer, Inc.
* It is considered confidential and proprietary.
*
* This document may not be reproduced or transmitted in any form,
* in whole or in part, without the express written permission of
* Apple Computer, Inc.
*/
#include <string.h>
#include <sys/types.h>
char *
strpbrk(char const *cs, char const *ct)
{
const char *sc1;
const char *sc2;
for(sc1 = cs; *sc1 != '\0'; ++sc1) {
for(sc2 = ct; *sc2 != '\0'; ++sc2) {
if(*sc1 == *sc2)
return (char *)sc1;
}
}
return NULL;
}