2 ** Copyright 2001, Travis Geiselbrecht. All rights reserved.
3 ** Distributed under the terms of the NewOS License.
11 strpbrk(char const *cs
, char const *ct
)
16 for (sc1
= cs
; *sc1
!= '\0'; ++sc1
) {
17 for (sc2
= ct
; *sc2
!= '\0'; ++sc2
) {