cutils/lib/cstr.c

76 lines
1.5 KiB
C
Raw Normal View History

#include "cstr.h"
#include <ctype.h>
#include <string.h>
/**
* trim whitespace of a cstring (both beginning and end). a null terminator
* will be placed after the last non-whitespace character. this modifies the
* string.
*
* @param str: the string to trim
*
* @return a pointer to the beginning of the trimmed string. the string is not
* copied, and the returned pointer points to somewhere within the
* original string.
*/
char *
strtrim (char *str)
{
strtrimr (str);
return strtriml (str);
}
/**
* trim whitespace of a cstring on the left (beginning of string). the original
* string will be preserved.
*
* @param str: the string to trim
*
* @return a pointer to the beginning of the trimmed string. the string is not
* copied, and the returned pointer points to somewhere within the
* original string.
*/
char *
2023-02-11 16:25:24 +01:00
strtriml (char *str)
{
while (*str && isspace (*str))
str++;
return str;
}
/**
* trim whitespace of a cstring on the right (end of string). a null terminator
* will be placed after the last non-whitespace character. this modifies the
* string.
*
* @param str: the string to trim
*
* @return the new string length
*/
size_t
strtrimr (char *str)
{
size_t len, i;
i = len = strlen (str);
while (i <= len && isspace (str[i - 1]))
i--;
str[i] = '\0';
return i;
}
2023-02-12 16:53:02 +01:00
size_t
strcount (const char *str, char c)
{
size_t count;
count = 0;
while (*str)
if (*str++ == c)
count += 1;
return count;
}