1 /* $NetBSD: testutil.h,v 1.4 2014/12/10 04:37:56 christos Exp $ */
3 /* Id: testutil.h,v 1.1 2003/06/04 00:27:03 marka Exp */
5 * Copyright (c) 2002 Japan Network Information Center.
8 * By using this file, you agree to the terms and conditions set forth bellow.
10 * LICENSE TERMS AND CONDITIONS
12 * The following License Terms and Conditions apply, unless a different
13 * license is obtained from Japan Network Information Center ("JPNIC"),
14 * a Japanese association, Kokusai-Kougyou-Kanda Bldg 6F, 2-3-4 Uchi-Kanda,
15 * Chiyoda-ku, Tokyo 101-0047, Japan.
17 * 1. Use, Modification and Redistribution (including distribution of any
18 * modified or derived work) in source and/or binary forms is permitted
19 * under this License Terms and Conditions.
21 * 2. Redistribution of source code must retain the copyright notices as they
22 * appear in each source code file, this License Terms and Conditions.
24 * 3. Redistribution in binary form must reproduce the Copyright Notice,
25 * this License Terms and Conditions, in the documentation and/or other
26 * materials provided with the distribution. For the purposes of binary
27 * distribution the "Copyright Notice" refers to the following language:
28 * "Copyright (c) 2000-2002 Japan Network Information Center. All rights reserved."
30 * 4. The name of JPNIC may not be used to endorse or promote products
31 * derived from this Software without specific prior written approval of
34 * 5. Disclaimer/Limitation of Liability: THIS SOFTWARE IS PROVIDED BY JPNIC
35 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
36 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
37 * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JPNIC BE LIABLE
38 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
39 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
40 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
41 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
42 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
43 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
44 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
47 #ifndef IDN_TESTUTIL_H
48 #define IDN_TESTUTIL_H 1
51 * Option flags for create_conf_file().
53 * CONF_NO_EOF_NEWLINE -- Don't put newline character
56 #define CONF_NO_EOF_NEWLINE 0x0001
59 * Create a configuration file.
61 * Write strings specified as variable length arguments (`...') to
62 * `filename'. Note that the arguments must be terminated with `NULL'.
64 * In the created config file, each string in the variable length
65 * arguments becomes a line. In other words, newline characters are
66 * added automatically.
68 * This function returns 1 upon success, 0 otherwise.
71 create_conf_file(const char *filename
, unsigned int flags
, ...);
73 #endif /* IDN_TESTUTIL_H */