fs Fetch file contents

This commit is contained in:
2025-10-02 22:29:20 +02:00
parent 91d648ade4
commit bc2b115cb3
9 changed files with 115 additions and 32 deletions

View File

@ -3,5 +3,6 @@
unsigned long string_conv_strtoul(const char *nptr, char **endptr, int base);
long string_conv_strtol(const char *nptr, char **endptr, int base);
const char *human_size(uint64_t bytes, char *buf, size_t bufsize);
#endif // ULIB_STRING_CONV_H_