initial commit

This commit is contained in:
root
2024-06-03 16:43:53 +03:00
commit 21e3fd0797
1535 changed files with 60499 additions and 0 deletions

27
vansh/Auth/auth.h Normal file
View File

@@ -0,0 +1,27 @@
#ifndef __AUTH__
#define __AUTH__
#ifndef _MATH_H_
#include <math.h>
#endif
#ifndef _STDBOOL_H
#include <stdbool.h>
#endif
#define ld long double
#define pwr2(x) (x * x)
ld
sq_root(ld x);
ld
toRadians( ld degree );
ld
orthodromic_distance(ld stu_lat, ld stu_long, ld teach_lat, ld teach_long);
bool
check_range(ld dist);
#endif // __AUTH__