! \brief * Do trim_leading and trim_trailing * * WARNING: String structure will be modified ! * Make a copy otherwise you might be * unable to free _s->s for example ! */
| 100 | * unable to free _s->s for example ! |
| 101 | */ |
| 102 | static inline void trim(str* _s) |
| 103 | { |
| 104 | trim_leading(_s); |
| 105 | trim_trailing(_s); |
| 106 | } |
| 107 | |
| 108 | |
| 109 | #endif /* TRIM_H */ |
no test coverage detected