2019-03-25 09:52:58 +08:00
|
|
|
/*
|
|
|
|
* Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
|
|
|
*/
|
|
|
|
|
2019-09-28 06:45:57 +08:00
|
|
|
#ifndef OSSL_TEST_OSSL_TEST_ENDIAN_H
|
|
|
|
# define OSSL_TEST_OSSL_TEST_ENDIAN_H
|
2019-03-25 09:52:58 +08:00
|
|
|
|
|
|
|
# define DECLARE_IS_ENDIAN \
|
|
|
|
const union { \
|
|
|
|
long one; \
|
|
|
|
char little; \
|
|
|
|
} ossl_is_endian = { 1 }
|
|
|
|
|
|
|
|
# define IS_LITTLE_ENDIAN (ossl_is_endian.little != 0)
|
|
|
|
# define IS_BIG_ENDIAN (ossl_is_endian.little == 0)
|
|
|
|
|
|
|
|
#endif
|