sl@0
|
1 |
/* crypto/o_dir.h -*- mode:C; c-file-style: "eay" -*- */
|
sl@0
|
2 |
/* Copied from Richard Levitte's (richard@levitte.org) LP library. All
|
sl@0
|
3 |
* symbol names have been changed, with permission from the author.
|
sl@0
|
4 |
*/
|
sl@0
|
5 |
|
sl@0
|
6 |
/* $LP: LPlib/test/test_dir.c,v 1.1 2004/06/16 22:59:47 _cvs_levitte Exp $ */
|
sl@0
|
7 |
/*
|
sl@0
|
8 |
* Copyright (c) 2004, Richard Levitte <richard@levitte.org>
|
sl@0
|
9 |
* All rights reserved.
|
sl@0
|
10 |
*
|
sl@0
|
11 |
* Redistribution and use in source and binary forms, with or without
|
sl@0
|
12 |
* modification, are permitted provided that the following conditions
|
sl@0
|
13 |
* are met:
|
sl@0
|
14 |
* 1. Redistributions of source code must retain the above copyright
|
sl@0
|
15 |
* notice, this list of conditions and the following disclaimer.
|
sl@0
|
16 |
* 2. Redistributions in binary form must reproduce the above copyright
|
sl@0
|
17 |
* notice, this list of conditions and the following disclaimer in the
|
sl@0
|
18 |
* documentation and/or other materials provided with the distribution.
|
sl@0
|
19 |
*
|
sl@0
|
20 |
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
sl@0
|
21 |
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
sl@0
|
22 |
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
sl@0
|
23 |
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
sl@0
|
24 |
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
sl@0
|
25 |
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
sl@0
|
26 |
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
sl@0
|
27 |
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
sl@0
|
28 |
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
sl@0
|
29 |
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
sl@0
|
30 |
* SUCH DAMAGE.
|
sl@0
|
31 |
*/
|
sl@0
|
32 |
|
sl@0
|
33 |
#include <stddef.h>
|
sl@0
|
34 |
#include <stdlib.h>
|
sl@0
|
35 |
#include <stdio.h>
|
sl@0
|
36 |
#include <errno.h>
|
sl@0
|
37 |
#include "e_os2.h"
|
sl@0
|
38 |
#include "o_dir.h"
|
sl@0
|
39 |
|
sl@0
|
40 |
#if defined OPENSSL_SYS_UNIX || defined OPENSSL_SYS_WIN32 || defined OPENSSL_SYS_WINCE
|
sl@0
|
41 |
#define CURRDIR "."
|
sl@0
|
42 |
#elif defined OPENSSL_SYS_VMS
|
sl@0
|
43 |
#define CURRDIR "SYS$DISK:[]"
|
sl@0
|
44 |
#else
|
sl@0
|
45 |
#error "No supported platform defined!"
|
sl@0
|
46 |
#endif
|
sl@0
|
47 |
|
sl@0
|
48 |
int main()
|
sl@0
|
49 |
{
|
sl@0
|
50 |
OPENSSL_DIR_CTX *ctx = NULL;
|
sl@0
|
51 |
const char *result;
|
sl@0
|
52 |
|
sl@0
|
53 |
while((result = OPENSSL_DIR_read(&ctx, CURRDIR)) != NULL)
|
sl@0
|
54 |
{
|
sl@0
|
55 |
printf("%s\n", result);
|
sl@0
|
56 |
}
|
sl@0
|
57 |
|
sl@0
|
58 |
if (errno)
|
sl@0
|
59 |
{
|
sl@0
|
60 |
perror("test_dir");
|
sl@0
|
61 |
exit(1);
|
sl@0
|
62 |
}
|
sl@0
|
63 |
|
sl@0
|
64 |
if (!OPENSSL_DIR_end(&ctx))
|
sl@0
|
65 |
{
|
sl@0
|
66 |
perror("test_dir");
|
sl@0
|
67 |
exit(2);
|
sl@0
|
68 |
}
|
sl@0
|
69 |
exit(0);
|
sl@0
|
70 |
}
|