diff options
Diffstat (limited to 'src/utils/common.c')
-rw-r--r-- | src/utils/common.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/utils/common.c b/src/utils/common.c index 9856463..68413b2 100644 --- a/src/utils/common.c +++ b/src/utils/common.c @@ -1194,3 +1194,9 @@ int ssid_parse(const char *buf, struct wpa_ssid_value *ssid) return ssid->ssid_len ? 0 : -1; } + + +int str_starts(const char *str, const char *start) +{ + return os_strncmp(str, start, os_strlen(start)) == 0; +} |