Last change
on this file since 3026 was
2759,
checked in by aslmd, 3 years ago
|
adding unmodified code from WRFV3.0.1.1, expurged from useless data +1M size
|
File size:
517 bytes
|
Rev | Line | |
---|
[2759] | 1 | #include <stdio.h> |
---|
| 2 | #include <stdlib.h> |
---|
| 3 | |
---|
| 4 | char *trim (char *str) |
---|
| 5 | { |
---|
| 6 | char *ibuf, *obuf; |
---|
| 7 | |
---|
| 8 | if (str) |
---|
| 9 | { |
---|
| 10 | for (ibuf = obuf = str; *ibuf; ) |
---|
| 11 | { |
---|
| 12 | while (*ibuf && (isspace (*ibuf))) |
---|
| 13 | ibuf++; |
---|
| 14 | if (*ibuf && (obuf != str)) |
---|
| 15 | *(obuf++) = ' '; |
---|
| 16 | while (*ibuf && (!isspace (*ibuf))) |
---|
| 17 | *(obuf++) = *(ibuf++); |
---|
| 18 | } |
---|
| 19 | *obuf = '\0'; |
---|
| 20 | } |
---|
| 21 | return (str); |
---|
| 22 | } |
---|
| 23 | |
---|
Note: See
TracBrowser
for help on using the repository browser.