mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 19:07:45 +03:00
stringop: move over has_prefix()
This commit is contained in:
parent
801bc76ce3
commit
c55dff95bc
3 changed files with 6 additions and 4 deletions
|
@ -360,3 +360,7 @@ char *format_str(const char *fmt, ...) {
|
|||
va_end(args);
|
||||
return str;
|
||||
}
|
||||
|
||||
bool has_prefix(const char *str, const char *prefix) {
|
||||
return strncmp(str, prefix, strlen(prefix)) == 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue