- Timestamp:
- 2015-01-16T19:50:23Z (8 years ago)
- Branches:
- master
- Children:
- 1065dd4, eabe6d4
- Parents:
- 6f10697
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
otr.c
r6f10697 r6b13103 1470 1470 int hexval(char a) 1471 1471 { 1472 int x= tolower(a);1472 int x=g_ascii_tolower(a); 1473 1473 1474 1474 if(x>='a' && x<='f') … … 1557 1557 for(i=0; args[i]; i++) { 1558 1558 for(j=0; args[i][j]; j++) { 1559 char c = toupper(args[i][j]);1559 char c = g_ascii_toupper(args[i][j]); 1560 1560 1561 1561 if(n>=40) { … … 1621 1621 for(i=0; args[i]; i++) { 1622 1622 for(j=0; args[i][j]; j++) { 1623 char c = toupper(args[i][j]);1623 char c = g_ascii_toupper(args[i][j]); 1624 1624 1625 1625 if(n>=40) {
Note: See TracChangeset
for help on using the changeset viewer.