From 3780f207f924f14734cb839fd015bd883fe52ff1 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Thu, 30 Jan 2025 21:02:42 -0800 Subject: restructure project --- src/common/protocol.c | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 src/common/protocol.c (limited to 'src/common/protocol.c') diff --git a/src/common/protocol.c b/src/common/protocol.c deleted file mode 100644 index 9be3bcf..0000000 --- a/src/common/protocol.c +++ /dev/null @@ -1,20 +0,0 @@ -#include "../include/protocol.h" -#include "../include/better_string.h" - -#include -#include -#include - -string_t *date_str() { - char dateStr[11]; - time_t t = time(NULL); - struct tm *tm_info = localtime(&t); - - strftime(dateStr, sizeof(dateStr), "%d-%m-%Y", tm_info); - return init_string(dateStr); -} - -bool same_day(struct tm *date1, struct tm *date2) { - return (date1->tm_year == date2->tm_year && date1->tm_mon == date2->tm_mon && - date1->tm_mday == date2->tm_mday); -} -- cgit