mirror of
https://github.com/theoludwig/libcproject.git
synced 2025-05-21 23:21:15 +02:00
fix!: usage of stdint
instead of int
types for cross-platform compatibility
BREAKING CHANGE: Functions signatures changed. Fixes #9
This commit is contained in:
@ -232,7 +232,7 @@ bool string_get_is_substring(const string_t string, const string_t substring);
|
||||
* @endcode
|
||||
* @since v1.0.0
|
||||
*/
|
||||
string_t string_get_formatted_number(const long long number, string_t separator);
|
||||
string_t string_get_formatted_number(const int64_t number, string_t separator);
|
||||
|
||||
/**
|
||||
* @brief Returns a pointer to the last occurrence of character in the string.
|
||||
|
Reference in New Issue
Block a user