xref: /freebsd-src/lib/libc/tests/string/strspn_test.c (revision 468adddd75f6461fcdd2151122d85879ec592a5b)
1*468addddSRobert Clausecker /*-
2*468addddSRobert Clausecker  * Copyright (c) 2023 The FreeBSD Foundation
3*468addddSRobert Clausecker  *
4*468addddSRobert Clausecker  * This software was developed by Robert Clausecker <fuz@FreeBSD.org>
5*468addddSRobert Clausecker  * under sponsorship from the FreeBSD Foundation.
6*468addddSRobert Clausecker  *
7*468addddSRobert Clausecker  * Redistribution and use in source and binary forms, with or without
8*468addddSRobert Clausecker  * modification, are permitted provided that the following conditions
9*468addddSRobert Clausecker  * are met:
10*468addddSRobert Clausecker  * 1. Redistributions of source code must retain the above copyright
11*468addddSRobert Clausecker  *    notice, this list of conditions and the following disclaimer.
12*468addddSRobert Clausecker  * 2. Redistributions in binary form must reproduce the above copyright
13*468addddSRobert Clausecker  *    notice, this list of conditions and the following disclaimer in the
14*468addddSRobert Clausecker  *    documentation and/or other materials provided with the distribution.
15*468addddSRobert Clausecker  *
16*468addddSRobert Clausecker  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ''AS IS'' AND
17*468addddSRobert Clausecker  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18*468addddSRobert Clausecker  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19*468addddSRobert Clausecker  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20*468addddSRobert Clausecker  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21*468addddSRobert Clausecker  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22*468addddSRobert Clausecker  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23*468addddSRobert Clausecker  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24*468addddSRobert Clausecker  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25*468addddSRobert Clausecker  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26*468addddSRobert Clausecker  * SUCH DAMAGE
27*468addddSRobert Clausecker  */
28*468addddSRobert Clausecker 
29*468addddSRobert Clausecker #define STRSPN
30*468addddSRobert Clausecker #include "strcspn_test.c"
31