1/* Copyright (c) 2005-2007 Apple Inc. All Rights Reserved. */
2
3/*
4 * libDERUtils.h - support routines for libDER tests & examples
5 *
6 * Created Nov. 7 2005 by dmitch
7 */
8
9#ifndef	_LIB_DER_UTILS_H_
10#define _LIB_DER_UTILS_H_
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
16#include <libDER/libDER.h>
17
18const char *DERReturnString(
19	DERReturn		drtn);
20
21void DERPerror(
22	const char *op,
23	DERReturn rtn);
24
25#ifdef __cplusplus
26}
27#endif
28
29#endif	/* _LIB_DER_UTILS_H_ */
30