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

feat: first release

This commit is contained in:
Divlo
2023-01-05 21:13:10 +01:00
parent 0fa82c5772
commit cf6b7db16d
25 changed files with 486 additions and 39 deletions

View File

@ -142,7 +142,7 @@ char* string_reverse(const char* string) {
return result;
}
bool string_get_is_equal(const char* string1, const char* string2) {
bool string_equals(const char* string1, const char* string2) {
size_t string1_length = string_get_length(string1);
size_t string2_length = string_get_length(string2);
bool is_equal = string1_length == string2_length;