Converting C Code to Assembly

Job ID: 34763334

Budget: $10 – $30 USD

Hi i need to convert a C code to RISC-V 64 assembly, here is the code, budget 10$


#include <string.h>

void to_upper_c(char * str) {
for (unsigned int i = 0; i < strlen(str); i++) {
if (str[i] >= 'a' && str[i] <= 'z') {
str[i] -= 'a' - 'A';
}
}
}