#include #include int string_length(char *string) { int i, length = 0; for(i = 0; string[i] != '\0'; i++) { length++; } return length; } void string_copy(char string_destination[], char string_source[]) { int i = 0; do { string_destination[i] = string_source[i]; }while(string_destination[i++] != '\0'); } char* string_find(char string_total[], char string_part[]) { int i, j, aux = 0, position = 999, find = 0, boolean; for(i = 0; i