Remove __cplusplus preamble from internal headers
[openssl.git] / include / internal / conf.h
1 /*
2  * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #ifndef HEADER_INTERNAL_CONF_H
11 # define HEADER_INTERNAL_CONF_H
12
13 #include <openssl/conf.h>
14
15 struct ossl_init_settings_st {
16     char *appname;
17 };
18
19 void openssl_config_int(const char *appname);
20 void openssl_no_config_int(void);
21 void conf_modules_free_int(void);
22
23 #endif