diff options
author | midipix <writeonce@midipix.org> | 2024-05-26 14:41:33 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-05-26 14:41:33 +0000 |
commit | 6c8a81097fd305d428891377433d7d88ba1119fd (patch) | |
tree | 91f2b4fa467e1a7851e2a1fd3f8ccc1f2d50fe1b /include | |
parent | 94230e73b767a4acc02a98d4a2520631517f1a2a (diff) | |
download | tpax-6c8a81097fd305d428891377433d7d88ba1119fd.tar.bz2 tpax-6c8a81097fd305d428891377433d7d88ba1119fd.tar.xz |
library api's: _util_ (utility helper interfaces) namespace overhaul.
Diffstat (limited to 'include')
-rw-r--r-- | include/tpax/tpax.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/tpax/tpax.h b/include/tpax/tpax.h index ad596c4..89c3bfc 100644 --- a/include/tpax/tpax.h +++ b/include/tpax/tpax.h @@ -157,9 +157,9 @@ tpax_api int tpax_archive_write (const struct tpax_driver_ctx *); tpax_api int tpax_archive_seal (const struct tpax_driver_ctx *); -/* helper api */ -tpax_api int tpax_path_copy (char *, const char *, size_t, uint32_t, size_t *); -tpax_api int tpax_stat_compare (const struct stat *, const struct stat *); +/* utility helper interfaces */ +tpax_api int tpax_util_path_copy (char *, const char *, size_t, uint32_t, size_t *); +tpax_api int tpax_util_stat_compare (const struct stat *, const struct stat *); /* utility api */ tpax_api int tpax_main (char **, char **, |