This repository was archived by the owner on Feb 12, 2025. It is now read-only.
Cleaning Things Up. Figuring Out Conventions.
- Introduced logging functions
INFO(fmt, ...),WARN(fmt, ...),ERRO(fmt, ...). - Introduced API conventions. Functions that start with
nobuild__(double underscore) are private to the library and should not be relied upon. They can be changed in any release without a warning.
Deprecations
All the deprecated functions and macros will be removed in the next major release.
remove_ext(path)is deprecated. UseNOEXT(path)instead.CONCAT_SEP(sep, ...)is deprecated. UseJOIN(sep, ...)instead.concat_sep_impl(sep, ...)is deprecated. UseJOIN(sep, ...)instead.