13 lines
167 B
C
13 lines
167 B
C
|
#ifndef __UTIL_H
|
||
|
#define __UTIL_H
|
||
|
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
|
||
|
void swap_u8(uint8_t &a, uint8_t &b);
|
||
|
void swap_ul(unsigned long &a, unsigned long &b);
|
||
|
|
||
|
|
||
|
#endif // __UTIL_H
|