From ca01695b77815d175814e0826968d2b680e1c629 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Mon, 5 Nov 2012 12:23:55 +0100 Subject: lib/path: rename functions to be more explicit ... and to have names compatible with lib/sysfs.c Signed-off-by: Karel Zak --- include/path.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'include/path.h') diff --git a/include/path.h b/include/path.h index 3dfd51794..cefaaa0a4 100644 --- a/include/path.h +++ b/include/path.h @@ -5,11 +5,11 @@ extern FILE *path_fopen(const char *mode, int exit_on_err, const char *path, ...) __attribute__ ((__format__ (__printf__, 3, 4))); -extern void path_getstr(char *result, size_t len, const char *path, ...) +extern void path_read_str(char *result, size_t len, const char *path, ...) __attribute__ ((__format__ (__printf__, 3, 4))); -extern int path_writestr(const char *str, const char *path, ...) +extern int path_write_str(const char *str, const char *path, ...) __attribute__ ((__format__ (__printf__, 2, 3))); -extern int path_getnum(const char *path, ...) +extern int path_read_s32(const char *path, ...) __attribute__ ((__format__ (__printf__, 1, 2))); extern int path_exist(const char *path, ...) __attribute__ ((__format__ (__printf__, 1, 2))); @@ -17,11 +17,11 @@ extern int path_exist(const char *path, ...) #ifdef HAVE_CPU_SET_T # include "cpuset.h" -extern cpu_set_t *path_cpuset(int, const char *path, ...) +extern cpu_set_t *path_read_cpuset(int, const char *path, ...) __attribute__ ((__format__ (__printf__, 2, 3))); -extern cpu_set_t *path_cpulist(int, const char *path, ...) +extern cpu_set_t *path_read_cpulist(int, const char *path, ...) __attribute__ ((__format__ (__printf__, 2, 3))); -extern void path_setprefix(const char *); +extern void path_set_prefix(const char *); #endif /* HAVE_CPU_SET_T */ #endif /* UTIL_LINUX_PATH_H */ -- cgit v1.2.3-55-g7522