labwc/include/common/string-helpers.h
Johan Malm e99e1003d0 string-helpers.h: fix typo in header guard
Reported-by: Jan Beich (@jbeich)
2020-10-28 20:41:46 +00: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 */