mirror of
https://github.com/pret/pmd-sky.git
synced 2026-08-05 02:37:05 -05:00
12 lines
332 B
C
12 lines
332 B
C
#ifndef PMDSKY_MAIN_02001CD4_H
|
|
#define PMDSKY_MAIN_02001CD4_H
|
|
|
|
#include "util.h"
|
|
|
|
void FixedPoint32To64(struct fixed_point_64* out, s32 x);
|
|
void NegateFixedPoint64(struct fixed_point_64* x);
|
|
bool8 FixedPoint64IsZero(struct fixed_point_64* x);
|
|
bool8 FixedPoint64IsNegative(struct fixed_point_64* x);
|
|
|
|
#endif //PMDSKY_MAIN_02001CD4_H
|