*** empty log message ***
[libidn.git] / tests / utils.h
blob830680ae5be01d40780382c417efcb3480303d51
1 /* utils.h --- Prototypes for self test utilities.
2 * Copyright (C) 2002, 2003, 2004 Simon Josefsson
4 * This file is part of GNU Libidn.
6 * GNU Libidn is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * GNU Libidn is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with GNU Libidn; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #ifndef UTILS_H
23 # define UTILS_H
25 # include <string.h>
26 # include <stdarg.h>
27 # include <stringprep.h>
29 extern int debug;
30 extern int error_count;
31 extern int break_on_error;
33 extern void fail (const char *format, ...);
34 extern void escapeprint (const char *str, size_t len);
35 extern void hexprint (const char *str, size_t len);
36 extern void binprint (const char *str, size_t len);
37 extern void ucs4print (const uint32_t * str, size_t len);
39 /* This must be implemented elsewhere. */
40 extern void doit (void);
42 #endif /* UTILS_H */