Moved ltrim, rtrim, and trim string functions into the bacstr library. (#1159)

This commit is contained in:
Steve Karg
2025-11-21 16:30:40 -06:00
committed by GitHub
parent a508e11624
commit a31261f78d
4 changed files with 66 additions and 40 deletions
+7
View File
@@ -219,6 +219,13 @@ BACNET_STACK_EXPORT
char *
bacnet_sprintf_to_ascii(char *buffer, size_t count, const char *format, ...);
BACNET_STACK_EXPORT
char *bacnet_ltrim(char *str, const char *trimmedchars);
BACNET_STACK_EXPORT
char *bacnet_rtrim(char *str, const char *trimmedchars);
BACNET_STACK_EXPORT
char *bacnet_trim(char *str, const char *trimmedchars);
#ifdef __cplusplus
}
#endif /* __cplusplus */