(SOC) Storage Only Commit - Sat 22 Jun 14:54:31 CST 2024

This commit is contained in:
William
2024-06-22 14:54:31 +08:00
parent 95a49ebefa
commit 2eb66dbc8d
18 changed files with 414 additions and 378 deletions

View File

@@ -19,6 +19,8 @@ int Utils_CalcDigits(long long int n);
int Utils_LiteraliseInteger(long long int n, char *buff);
int Utils_DateTimeLiteralise(time_t t, char *buff);
// int Utils_DateTimeLiteralise(time_t t, char *buff);
int Utils_DateTimeLiteralise(time_t timer, char *buff,
const char *__restrict format);
#endif /* COMPOUND_UTILS_H */

View File

@@ -42,8 +42,8 @@ int Utils_LiteraliseInteger(long long int n, char *buff)
return literalising_len;
}
int Utils_DateTimeLiteralise(time_t t, char *buff)
int Utils_DateTimeLiteralise(time_t timer, char *buff,
const char *__restrict format)
{
return 0;
}