* adfIntlToUpper * */
| 802 | * |
| 803 | */ |
| 804 | uint8_t |
| 805 | adfIntlToUpper(uint8_t c) |
| 806 | { |
| 807 | return (c>='a' && c<='z') || (c>=224 && c<=254 && c!=247) ? c - ('a'-'A') : c ; |
| 808 | } |
| 809 | |
| 810 | uint8_t |
| 811 | adfToUpper(uint8_t c) |
no outgoing calls
no test coverage detected