bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
float_byteswap.h
1
2// Created by Kent Yang on 02/27/2024
3
4#ifndef HAVE_FLOAT_BYTESWAP_H
5#define HAVE_FLOAT_BYTESWAP_H
6#include <cstdint>
7
8void swap_float32(char* buf, int64_t num);
9void swap_float64(char* buf, int64_t num);
10#endif