1
1
mirror of https://github.com/theoludwig/libcproject.git synced 2025-05-21 23:21:15 +02:00

chore: update @since version

This commit is contained in:
2024-09-15 18:43:39 +02:00
parent 740aab1fcf
commit e1d9b714db
2 changed files with 7 additions and 7 deletions

View File

@ -305,7 +305,7 @@ size_t string_last_position_of(const string_t string, const char character);
* @code
* string_pad_start("hello", " ", 10) // " hello"
* @endcode
* @since vTODO
* @since v4.3.0
*/
string_t string_pad_start(const string_t string, const string_t pad_string, size_t target_length);
@ -321,7 +321,7 @@ string_t string_pad_start(const string_t string, const string_t pad_string, size
*
* string_zero_pad(10, 2) // "10"
* @endcode
* @since vTODO
* @since v4.3.0
*/
string_t string_zero_pad(uint64_t number, size_t places);