10 lines
616 B
C
10 lines
616 B
C
#include "dual-versor.h"
|
|
|
|
extern inline void bgc_fp32_dual_versor_reset(BGC_FP32_DualVersor* number);
|
|
extern inline void bgc_fp64_dual_versor_reset(BGC_FP64_DualVersor* number);
|
|
|
|
extern inline void bgc_fp32_dual_versor_copy(BGC_FP32_DualVersor* destination, const BGC_FP32_DualVersor* source);
|
|
extern inline void bgc_fp64_dual_versor_copy(BGC_FP64_DualVersor* destination, const BGC_FP64_DualVersor* source);
|
|
|
|
extern inline void bgc_fp32_dual_versor_swap(BGC_FP32_DualVersor* first, BGC_FP32_DualVersor* second);
|
|
extern inline void bgc_fp64_dual_versor_swap(BGC_FP64_DualVersor* first, BGC_FP64_DualVersor* second);
|