mirror of
https://github.com/labwc/labwc.git
synced 2026-03-19 05:33:53 -04:00
string-helper: add str_space_only()
This commit is contained in:
parent
67f36d9e13
commit
ad970544e1
2 changed files with 17 additions and 0 deletions
|
|
@ -9,6 +9,12 @@
|
||||||
*/
|
*/
|
||||||
bool string_null_or_empty(const char *s);
|
bool string_null_or_empty(const char *s);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* str_space_only - Check if the string only contains white-space characters
|
||||||
|
* @s: string to check
|
||||||
|
*/
|
||||||
|
bool str_space_only(const char *s);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* trim_last_field() - Trim last field of string splitting on provided delim
|
* trim_last_field() - Trim last field of string splitting on provided delim
|
||||||
* @buf: string to trim
|
* @buf: string to trim
|
||||||
|
|
|
||||||
|
|
@ -204,3 +204,14 @@ str_equal(const char *a, const char *b)
|
||||||
{
|
{
|
||||||
return a == b || (a && b && !strcmp(a, b));
|
return a == b || (a && b && !strcmp(a, b));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool
|
||||||
|
str_space_only(const char *s)
|
||||||
|
{
|
||||||
|
for (; *s; s++) {
|
||||||
|
if (!isspace(*s)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue