117f01e99SJung-uk Kim /* 2*b077aed3SPierre Pronchery * Copyright 2016-2021 The OpenSSL Project Authors. All Rights Reserved. 317f01e99SJung-uk Kim * 4*b077aed3SPierre Pronchery * Licensed under the Apache License 2.0 (the "License"). You may not use 517f01e99SJung-uk Kim * this file except in compliance with the License. You can obtain a copy 617f01e99SJung-uk Kim * in the file LICENSE in the source distribution or at 717f01e99SJung-uk Kim * https://www.openssl.org/source/license.html 817f01e99SJung-uk Kim */ 917f01e99SJung-uk Kim 1017f01e99SJung-uk Kim #ifndef OSSL_CRYPTO_ERR_H 1117f01e99SJung-uk Kim # define OSSL_CRYPTO_ERR_H 12*b077aed3SPierre Pronchery # pragma once 1317f01e99SJung-uk Kim 14*b077aed3SPierre Pronchery int ossl_err_load_ERR_strings(void); 15*b077aed3SPierre Pronchery int ossl_err_load_crypto_strings(void); 1617f01e99SJung-uk Kim void err_cleanup(void); 1717f01e99SJung-uk Kim int err_shelve_state(void **); 1817f01e99SJung-uk Kim void err_unshelve_state(void *); 1917f01e99SJung-uk Kim 2017f01e99SJung-uk Kim #endif 21