#include "string_utils.h" #include #include char *trim_blank_left(char *str) { if (str == NULL) return NULL; while (*str != '\0' && isblank(*str)) str++; return str; }