labwc/include/common/string-helpers.h
2020-10-09 19:46:59 +01:00

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 */