summaryrefslogtreecommitdiff
path: root/src/big_endian.h
blob: e6c587efa183f6d7904fd749d63be8b07b136f41 (plain)
1
2
3
4
5
6
7
8
9
#ifndef BIG_ENDIAN_H
#define BIG_ENDIAN_H
#include <stdint.h>

void to_big_endian(uint64_t num, unsigned char *result);

uint64_t from_big_endian(unsigned char *num);

#endif