I would like to know if there is a quick way to convert this code into Assembly from IA32 please!
void function1(char trs[], int let[26]) {
    int i;
    int ind;
    int x = trs[i];
    for(i=0; trs[i]!='\0'; i++) {
        if (x>='a' && x<='z')
            ind = x - 'a';  
            let[ind]++;
        if (x>='A' && x<='Z')
            ind=x - 'A';
        let[ind]++;   
    }
}
 
     
    