1*4543ef51SXin LI /* Tests in the "namespace allocation" test case for the Expat test suite 2*4543ef51SXin LI __ __ _ 3*4543ef51SXin LI ___\ \/ /_ __ __ _| |_ 4*4543ef51SXin LI / _ \\ /| '_ \ / _` | __| 5*4543ef51SXin LI | __// \| |_) | (_| | |_ 6*4543ef51SXin LI \___/_/\_\ .__/ \__,_|\__| 7*4543ef51SXin LI |_| XML parser 8*4543ef51SXin LI 9*4543ef51SXin LI Copyright (c) 2001-2006 Fred L. Drake, Jr. <fdrake@users.sourceforge.net> 10*4543ef51SXin LI Copyright (c) 2003 Greg Stein <gstein@users.sourceforge.net> 11*4543ef51SXin LI Copyright (c) 2005-2007 Steven Solie <steven@solie.ca> 12*4543ef51SXin LI Copyright (c) 2005-2012 Karl Waclawek <karl@waclawek.net> 13*4543ef51SXin LI Copyright (c) 2016-2022 Sebastian Pipping <sebastian@pipping.org> 14*4543ef51SXin LI Copyright (c) 2017-2022 Rhodri James <rhodri@wildebeest.org.uk> 15*4543ef51SXin LI Copyright (c) 2017 Joe Orton <jorton@redhat.com> 16*4543ef51SXin LI Copyright (c) 2017 José Gutiérrez de la Concha <jose@zeroc.com> 17*4543ef51SXin LI Copyright (c) 2018 Marco Maggi <marco.maggi-ipsu@poste.it> 18*4543ef51SXin LI Copyright (c) 2019 David Loffredo <loffredo@steptools.com> 19*4543ef51SXin LI Copyright (c) 2020 Tim Gates <tim.gates@iress.com> 20*4543ef51SXin LI Copyright (c) 2021 Donghee Na <donghee.na@python.org> 21*4543ef51SXin LI Licensed under the MIT license: 22*4543ef51SXin LI 23*4543ef51SXin LI Permission is hereby granted, free of charge, to any person obtaining 24*4543ef51SXin LI a copy of this software and associated documentation files (the 25*4543ef51SXin LI "Software"), to deal in the Software without restriction, including 26*4543ef51SXin LI without limitation the rights to use, copy, modify, merge, publish, 27*4543ef51SXin LI distribute, sublicense, and/or sell copies of the Software, and to permit 28*4543ef51SXin LI persons to whom the Software is furnished to do so, subject to the 29*4543ef51SXin LI following conditions: 30*4543ef51SXin LI 31*4543ef51SXin LI The above copyright notice and this permission notice shall be included 32*4543ef51SXin LI in all copies or substantial portions of the Software. 33*4543ef51SXin LI 34*4543ef51SXin LI THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 35*4543ef51SXin LI EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 36*4543ef51SXin LI MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN 37*4543ef51SXin LI NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 38*4543ef51SXin LI DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 39*4543ef51SXin LI OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE 40*4543ef51SXin LI USE OR OTHER DEALINGS IN THE SOFTWARE. 41*4543ef51SXin LI */ 42*4543ef51SXin LI 43*4543ef51SXin LI #ifdef __cplusplus 44*4543ef51SXin LI extern "C" { 45*4543ef51SXin LI #endif 46*4543ef51SXin LI 47*4543ef51SXin LI #ifndef XML_NSALLOC_TESTS_H 48*4543ef51SXin LI # define XML_NSALLOC_TESTS_H 49*4543ef51SXin LI 50*4543ef51SXin LI extern void make_nsalloc_test_case(Suite *s); 51*4543ef51SXin LI 52*4543ef51SXin LI #endif /* XML_NSALLOC_TESTS_H */ 53*4543ef51SXin LI 54*4543ef51SXin LI #ifdef __cplusplus 55*4543ef51SXin LI } 56*4543ef51SXin LI #endif 57