Lines Matching refs:psz
42 * @param psz The string to strip.
44 RTDECL(char *) RTStrStrip(char *psz)
47 while (RT_C_IS_SPACE(*psz))
48 psz++;
51 char *pszEnd = strchr(psz, '\0');
52 while (--pszEnd > psz && RT_C_IS_SPACE(*pszEnd))
55 return psz;
64 * @param psz The string to strip.
66 RTDECL(char *) RTStrStripL(const char *psz)
69 while (RT_C_IS_SPACE(*psz))
70 psz++;
72 return (char *)psz;
80 * @returns psz.
81 * @param psz The string to strip.
83 RTDECL(char *) RTStrStripR(char *psz)
86 char *pszEnd = strchr(psz, '\0');
87 while (--pszEnd > psz && RT_C_IS_SPACE(*pszEnd))
90 return psz;