aboutsummaryrefslogtreecommitdiffstats
path: root/src/mds-kbdc/paths.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mds-kbdc/paths.h')
-rw-r--r--src/mds-kbdc/paths.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mds-kbdc/paths.h b/src/mds-kbdc/paths.h
index 6c24042..6dbe007 100644
--- a/src/mds-kbdc/paths.h
+++ b/src/mds-kbdc/paths.h
@@ -24,7 +24,7 @@
*
* @return The current working directory
*/
-char* curpath(void);
+char *curpath(void);
/**
* Get the absolute path of a file
@@ -32,7 +32,7 @@ char* curpath(void);
* @param path The filename of the file
* @return The file's absolute path, `NULL` on error
*/
-char* abspath(const char* path);
+char *abspath(const char *path);
/**
* Get a relative path of a file
@@ -42,8 +42,7 @@ char* abspath(const char* path);
* `NULL` for the current working directroy
* @return The file's relative path, `NULL` on error
*/
-char* relpath(const char* path, const char* base);
+char *relpath(const char* path, const char *base);
#endif
-