first working reload

This commit is contained in:
2025-04-24 00:35:52 +03:00
parent 08de37f245
commit cf398c55ff
5 changed files with 175 additions and 134 deletions

View File

@@ -6,8 +6,8 @@
/**
* Concatenate two strings into a buffer.
*
* If resulting string would be longer than buflen - 1, the resulting string in \p
* buf is unchanged.
* If resulting string would be longer than buflen - 1, the resulting string in
* \p buf is unchanged.
*
* @param first Null terminated character string
* @param second Null terminated character string
@@ -39,4 +39,7 @@ char *hi_string_from_file_dyn(const char *filename, size_t *nread, size_t nmax);
*/
int hi_path_has_filename(const char *path, const char *filename);
const char *hi_string_starts_with(const char path[static 1], size_t listn,
const char *pathlist[listn]);
#endif // HI_STRING_H_