cv1
This commit is contained in:
parent
10398ec2b6
commit
d41d314399
@ -1,6 +1,7 @@
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <ctype.h>
|
||||
|
||||
#define LINESIZE 100
|
||||
struct pizza {
|
||||
@ -49,6 +50,9 @@ int main(){
|
||||
if(menu[i].name[j] == numbers[x]){
|
||||
menu[i].name[j] = letters[x];
|
||||
}
|
||||
if(isupper(menu[i].name[j])){
|
||||
menu[i].name[j] = tolower(menu[i].name[j]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user