Converting C Code to Assembly
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';
}
}
}
#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';
}
}
}