| 408 | } |
| 409 | |
| 410 | char *msStringChop(char *string) { |
| 411 | int n; |
| 412 | |
| 413 | n = strlen(string); |
| 414 | if(n>0) |
| 415 | string[n-1] = '\0'; |
| 416 | |
| 417 | return(string); |
| 418 | } |
| 419 | |
| 420 | /* |
| 421 | ** Trim leading and trailing white space. |
no outgoing calls
no test coverage detected