]> git.sur5r.net Git - openldap/blob - libraries/liblber/idtest.c
Update copyright of build environment, includes, and liblber/libldap.
[openldap] / libraries / liblber / idtest.c
1 /* idtest.c - ber decoding test program using isode libraries */
2 /*
3  * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /* Portions
7  * Copyright (c) 1990 Regents of the University of Michigan.
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms are permitted
11  * provided that this notice is preserved and that due credit is given
12  * to the University of Michigan at Ann Arbor. The name of the University
13  * may not be used to endorse or promote products derived from this
14  * software without specific prior written permission. This software
15  * is provided ``as is'' without express or implied warranty.
16  */
17
18 #include "portable.h"
19
20 #include <stdio.h>
21
22 #ifdef HAVE_PSAP_H
23 #include <psap.h>
24 #include <quipu/attr.h>
25 #endif
26
27 int
28 main( int argc, char **argv )
29 {
30 #ifdef HAVE_PSAP_H
31         PE      pe;
32         PS      psin, psout, pserr;
33
34         /* read the pe from standard in */
35         if ( (psin = ps_alloc( std_open )) == NULLPS ) {
36                 perror( "ps_alloc" );
37                 exit( 1 );
38         }
39         if ( std_setup( psin, stdin ) == NOTOK ) {
40                 perror( "std_setup" );
41                 exit( 1 );
42         }
43         /* write the pe to standard out */
44         if ( (psout = ps_alloc( std_open )) == NULLPS ) {
45                 perror( "ps_alloc" );
46                 exit( 1 );
47         }
48         if ( std_setup( psout, stdout ) == NOTOK ) {
49                 perror( "std_setup" );
50                 exit( 1 );
51         }
52         /* pretty print it to standard error */
53         if ( (pserr = ps_alloc( std_open )) == NULLPS ) {
54                 perror( "ps_alloc" );
55                 exit( 1 );
56         }
57         if ( std_setup( pserr, stderr ) == NOTOK ) {
58                 perror( "std_setup" );
59                 exit( 1 );
60         }
61
62         while ( (pe = ps2pe( psin )) != NULLPE ) {
63                 pe2pl( pserr, pe );
64                 pe2ps( psout, pe );
65         }
66
67         exit( 0 );
68 #else
69         fprintf(stderr, "requires ISODE X.500 distribution.\n");
70         exit( 1 );
71 #endif
72 }