Compare commits

..

1 Commits

Author SHA1 Message Date
Hongcai Deng 91fff46499
Merge a16fde8070 into aa144b5981 2025-02-23 23:45:16 +08:00
3 changed files with 1 additions and 9 deletions

View File

@ -1,7 +1,6 @@
Version 1.77 2025-03-18 Version 1.77 2025-02-03
* impl. shorten_path for /./ and /../ * impl. shorten_path for /./ and /../
* add function fc_compare_int64_ptr
Version 1.76 2025-01-27 Version 1.76 2025-01-27
* get_mounted_filesystems act as program df * get_mounted_filesystems act as program df

View File

@ -4362,8 +4362,3 @@ int fc_itoa(int64_t n, char *buff)
} }
return (start - buff) + len; return (start - buff) + len;
} }
int fc_compare_int64_ptr(const int64_t *n1, const int64_t *n2)
{
return fc_compare_int64(*n1, *n2);
}

View File

@ -777,8 +777,6 @@ int set_run_by(const char *group_name, const char *username);
*/ */
int cmp_by_ip_addr_t(const void *p1, const void *p2); int cmp_by_ip_addr_t(const void *p1, const void *p2);
int fc_compare_int64_ptr(const int64_t *n1, const int64_t *n2);
/** parse bytes /** parse bytes
* parameters: * parameters:
* pStr: the string to parse * pStr: the string to parse