(FEA) Featured for Location_Literalisation, Status_Literalisation etc.

This commit is contained in:
William
2024-06-06 02:22:54 +08:00
parent df073877cc
commit 54042cf2cf
28 changed files with 744 additions and 358 deletions

View File

@@ -5,10 +5,14 @@
# include <string.h>
# include <stdlib.h>
# include <math.h>
# include <stdint.h>
# include <Compound/common.h>
# include <Compound/const.h>
# define max(a, b) (a >= b ? a : b)
# define min(a, b) (a <= b ? a : b)
# define DATETIME_FORMAT "%a %d %b %X %Z %Y"
int Utils_CalcDigits(long long int n);

View File

@@ -46,3 +46,4 @@ int Utils_DateTimeLiteralise(time_t t, char *buff)
{
return 0;
}