made the /bk_week_get function properly... and a bunch more that i forgor

This commit is contained in:
2025-02-09 15:53:50 +01:00
parent b816c12a6c
commit dc2342737c
14 changed files with 285 additions and 40 deletions
+6 -4
View File
@@ -1,9 +1,10 @@
#[macro_export]
macro_rules! rs_println {
($($arg:tt)*) => {
println!("{}RS - {}",
println!("{}RS - {}{}",
"\x1b[31m",
format!($($arg)*)
format!($($arg)*),
"\x1b[0m"
);
};
}
@@ -12,10 +13,11 @@ macro_rules! rs_println {
#[macro_export]
macro_rules! rs_errln {
($($arg:tt)*) => {
println!("{}ERROR{} RS - {}",
println!("{}ERROR{} RS - {}{}",
"\x1b[41m",
"\x1b[0m\x1b[31m",
format!($($arg)*)
format!($($arg)*),
"\x1b[0m"
);
process::exit(1);
};