16 lines
289 B
C
16 lines
289 B
C
|
/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC)
|
||
|
* SPDX-License-Identifier: GPL-3.0-or-later */
|
||
|
|
||
|
#include "path.h"
|
||
|
|
||
|
#include <string.h>
|
||
|
|
||
|
int
|
||
|
path_has_prefix(const char *path, const char *prefix)
|
||
|
{
|
||
|
if (strncmp(path, prefix, strlen(prefix)) != 0)
|
||
|
return 0;
|
||
|
|
||
|
return 1;
|
||
|
}
|