1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-09-12 20:10:23 +00:00
qb64/internal/c/parts/user_mods/include/steve_mods.h

23 lines
743 B
C

//***************************************************************
//**
//** Declarations for routines proved by Steve McNeill
//** Email: smcneill@swva.net
//**
//****************************************************************
//Angle Conversion Formulas
double func_deg2rad(double degree);
double func_deg2grad(double degree);
double func_rad2deg(double degree);
double func_rad2grad(double degree);
double func_grad2deg(double degree);
double func_grad2rad(double degree);
double func_pi();
int32 func_screenwidth();
int32 func_screenheight();
void sub_screenicon();
int32 func_windowexists ();
int32 func__controlchr();
int32 func__str_nc_compare(qbs *s1, qbs *s2);
int32 func__str_compare(qbs *s1, qbs *s2);