aws-lc-sys 0.15.0

AWS-LC is a general-purpose cryptographic library maintained by the AWS Cryptography team for AWS and their customers. It іs based on code from the Google BoringSSL project and the OpenSSL project.
Documentation
// Copyright (c) 2022, Google Inc.
// SPDX-License-Identifier: ISC
// Modifications copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0 OR ISC

#include "rust_wrapper.h"


int ERR_GET_LIB_RUST(uint32_t packed_error) {
  return ERR_GET_LIB(packed_error);
}

int ERR_GET_REASON_RUST(uint32_t packed_error) {
  return ERR_GET_REASON(packed_error);
}

int ERR_GET_FUNC_RUST(uint32_t packed_error) {
  return ERR_GET_FUNC(packed_error);
}