Adding more definitions.

This commit is contained in:
Creeper Lv
2026-04-11 14:55:25 +08:00
parent d34c74f617
commit b35596a19a
5 changed files with 90 additions and 28 deletions
+16 -2
View File
@@ -145,7 +145,8 @@ typedef enum math2op
sag_math2_pow,
} math2op;
typedef enum math1op{
typedef enum math1op
{
sag_math1_sin,
sag_math1_cos,
sag_math1_tan,
@@ -156,7 +157,20 @@ typedef enum math1op{
sag_math1_acos,
sag_math1_atan,
sag_math1_abs,
}math1op;
} math1op;
typedef enum sagittarius_type
{
st_uint8,
st_uint16,
st_uint32,
st_uint64,
st_int8,
st_int16,
st_int32,
st_int64,
st_single,
st_double
} sagittarius_type;
typedef struct SagittariusInst
{
uint64_t data;