Last change
on this file since 9519422 was 7258c6a, checked in by Thomas Lopatic <thomas@…>, 8 years ago |
Use standard integer types.
|
-
Property mode
set to
100644
|
File size:
406 bytes
|
Rev | Line | |
---|
[f40a309] | 1 | /*
|
---|
| 2 | ============================================================================
|
---|
| 3 | str2lc(s) -- convert string s to lower case ASCII
|
---|
| 4 | Version 2 -- 1987-06-12 -- Copyright 1987 -- D.N. Lynx Crowe
|
---|
| 5 | ============================================================================
|
---|
| 6 | */
|
---|
| 7 |
|
---|
[7258c6a] | 8 | int8_t *str2lc(int8_t *s)
|
---|
[f40a309] | 9 | {
|
---|
[7258c6a] | 10 | register int8_t c;
|
---|
| 11 | register int8_t *r = s;
|
---|
[f40a309] | 12 |
|
---|
| 13 | while (c = *s)
|
---|
| 14 | *s++ = tolower(c);
|
---|
| 15 |
|
---|
| 16 | return(r);
|
---|
| 17 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.