1
1
mirror of https://github.com/theoludwig/libcproject.git synced 2024-11-13 23:43:13 +01:00

chore: update @since version

This commit is contained in:
Théo LUDWIG 2024-09-15 18:43:39 +02:00
parent 740aab1fcf
commit e1d9b714db
Signed by: theoludwig
GPG Key ID: ADFE5A563D718F3B
2 changed files with 7 additions and 7 deletions

View File

@ -78,7 +78,7 @@ unsigned long long mathematics_factorial(unsigned long long number);
*
* mathematics_opposite(-7) // 7
* @endcode
* @since vTODO
* @since v4.3.0
*/
int64_t mathematics_opposite(int64_t number);
@ -88,7 +88,7 @@ int64_t mathematics_opposite(int64_t number);
* @param number1
* @param number2
* @return int64_t
* @since vTODO
* @since v4.3.0
*/
int64_t mathematics_max(int64_t number1, int64_t number2);
@ -98,7 +98,7 @@ int64_t mathematics_max(int64_t number1, int64_t number2);
* @param values
* @param values_length
* @return int64_t
* @since vTODO
* @since v4.3.0
*/
int64_t mathematics_max_values(int64_t *values, size_t values_length);
@ -108,7 +108,7 @@ int64_t mathematics_max_values(int64_t *values, size_t values_length);
* @param number1
* @param number2
* @return int64_t
* @since vTODO
* @since v4.3.0
*/
int64_t mathematics_min(int64_t number1, int64_t number2);
@ -118,7 +118,7 @@ int64_t mathematics_min(int64_t number1, int64_t number2);
* @param values
* @param values_length
* @return int64_t
* @since vTODO
* @since v4.3.0
*/
int64_t mathematics_min_values(int64_t *values, size_t values_length);

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);