Rev 2526 | Rev 3627 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2526 | Rev 3271 | ||
---|---|---|---|
Line 74... | Line 74... | ||
74 | default: |
74 | default: |
75 | return 0; |
75 | return 0; |
76 | } |
76 | } |
77 | } |
77 | } |
78 | 78 | ||
- | 79 | static inline int tolower(int c) |
|
- | 80 | { |
|
- | 81 | if (isupper(c)) |
|
- | 82 | return (c + ('a' - 'A' > 0 ? 'a' - 'A' : 'A' - 'a')); |
|
- | 83 | else |
|
- | 84 | return c; |
|
- | 85 | } |
|
- | 86 | ||
79 | #endif |
87 | #endif |
80 | 88 | ||
81 | /** @} |
89 | /** @} |
82 | */ |
90 | */ |