os/ossrv/ssl/include/o_dir.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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/source/LPdir.h,v 1.1 2004/06/14 08:56:04 _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
sl@0
    34
#ifndef O_DIR_H
sl@0
    35
#define O_DIR_H
sl@0
    36
sl@0
    37
#ifdef __cplusplus
sl@0
    38
extern "C" {
sl@0
    39
#endif
sl@0
    40
sl@0
    41
  typedef struct OPENSSL_dir_context_st OPENSSL_DIR_CTX;
sl@0
    42
sl@0
    43
  /* returns NULL on error or end-of-directory.
sl@0
    44
     If it is end-of-directory, errno will be zero */
sl@0
    45
  IMPORT_C const char *OPENSSL_DIR_read(OPENSSL_DIR_CTX **ctx, const char *directory);
sl@0
    46
  /* returns 1 on success, 0 on error */
sl@0
    47
  IMPORT_C int OPENSSL_DIR_end(OPENSSL_DIR_CTX **ctx);
sl@0
    48
sl@0
    49
#ifdef __cplusplus
sl@0
    50
}
sl@0
    51
#endif
sl@0
    52
sl@0
    53
#endif /* LPDIR_H */