Compare commits
1 Commits
eaf7645ffc
...
91fff46499
| Author | SHA1 | Date |
|---|---|---|
|
|
91fff46499 |
3
HISTORY
3
HISTORY
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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);
|
|
||||||
}
|
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue