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