Files

18 lines
503 B
C
Raw Permalink Normal View History

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _PERF_PATH_H
#define _PERF_PATH_H
#include <stddef.h>
#include <stdbool.h>
2017-12-06 18:45:35 +01:00
struct dirent;
int path__join(char *bf, size_t size, const char *path1, const char *path2);
int path__join3(char *bf, size_t size, const char *path1, const char *path2, const char *path3);
bool is_regular_file(const char *file);
2017-12-06 18:45:35 +01:00
bool is_directory(const char *base_path, const struct dirent *dent);
bool is_directory_at(int dir_fd, const char *path);
#endif /* _PERF_PATH_H */