mirror of
https://github.com/labwc/labwc.git
synced 2025-10-29 05:40:24 -04:00
11 lines
307 B
C
11 lines
307 B
C
#ifndef __LABWC_STRING_HELPERs_H
|
|
#define __LABWC_STRING_HELPERS_H
|
|
|
|
/**
|
|
* string_strip - strip white space left and right
|
|
* Note: this function does a left skip, so the returning pointer cannot be
|
|
* used to free any allocated memory
|
|
*/
|
|
char *string_strip(char *s);
|
|
|
|
#endif /* __LABWC_STRING_HELPERs_H */
|