micro-utils/libmu/get_stat.h

10 lines
329 B
C
Raw Normal View History

2024-07-09 19:33:45 +00:00
#ifndef _GET_STAT_H
#define _GET_STAT_H
#include <sys/stat.h>
int mu_get_stat(const char *prog_name, const char *path, struct stat *stat_path);
int mu_get_lstat(const char *prog_name, const char *path, struct stat *stat_path);
int mu_get_stats(const char *prog_name, int flag, const char *path, struct stat *stat_path);
#endif