#include <string.h>
#include "rename.h"
-void rename_lowwer_str(char* src, char* dst)
+void rename_lower_str(char* src, char* dst)
{
rename_str(src, dst);
int len = strlen(dst);
#define STR_MAX_LENGTH 255
-void rename_lowwer_str(char* src, char* dst);
+void rename_lower_str(char* src, char* dst);
void rename_str(char* src, char* dst);
#endif
\ No newline at end of file
char* output = (char*) *state;
char* input = "Gruß Gott, hat der Biergarten offen?";
- rename_lowwer_str(input, output);
+ rename_lower_str(input, output);
assert_string_equal(output, "gruss_gott,_hat_der_biergarten_offen?");
}