| Current Path : /proc/242857/root/opt/alt/python37/share/doc/alt-python37-Cython/Doc/s5/ep2008/ |
| Current File : //proc/242857/root/opt/alt/python37/share/doc/alt-python37-Cython/Doc/s5/ep2008/stupidlowercase.py |
def stupid_lower_case(char* s):
cdef Py_ssize_t size, i
size = len(s)
for i in range(size):
if s[i] >= 'A' and s[i] <= 'Z':
s[i] += 'a' - 'A'
return s