| 6748 | // |
| 6749 | |
| 6750 | static void to_upcase(const TEXT* p, TEXT* q, int target_size) |
| 6751 | { |
| 6752 | UCHAR c; |
| 6753 | USHORT l = 0; |
| 6754 | |
| 6755 | while ((c = *p++) && (++l < target_size)) { |
| 6756 | *q++ = UPPER(c); |
| 6757 | } |
| 6758 | *q = 0; |
| 6759 | } |
| 6760 | |
| 6761 | |
| 6762 | //____________________________________________________________ |
no outgoing calls
no test coverage detected