aboutsummaryrefslogtreecommitdiff
path: root/src/paths.cc
diff options
context:
space:
mode:
authorRodrigo Arias Mallo <rodarima@gmail.com>2024-03-09 17:35:19 +0100
committerrodarima <rodarima@gmail.com>2024-03-09 18:43:51 +0100
commit4c56214b8c2e130d3709bdca2513aef20b7b0fab (patch)
treeb8cd0c6dafb5850ba116221f6f39a62e84983aa5 /src/paths.cc
parentbde09c45adf0daf252fafbaf87683d3ed7eaab07 (diff)
Use Doxygen comments for C files
Diffstat (limited to 'src/paths.cc')
-rw-r--r--src/paths.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/paths.cc b/src/paths.cc
index bb233de8..94982594 100644
--- a/src/paths.cc
+++ b/src/paths.cc
@@ -24,7 +24,7 @@
// Dillo works from an unmounted directory (/tmp)
static char* oldWorkingDir = NULL;
-/*
+/**
* Changes current working directory to /tmp and creates ~/.dillo
* if not exists.
*/
@@ -58,7 +58,7 @@ void Paths::init(void)
dFree(path);
}
-/*
+/**
* Return the initial current working directory in a string.
*/
char *Paths::getOldWorkingDir(void)
@@ -66,7 +66,7 @@ char *Paths::getOldWorkingDir(void)
return oldWorkingDir;
}
-/*
+/**
* Free memory
*/
void Paths::free(void)
@@ -74,7 +74,7 @@ void Paths::free(void)
dFree(oldWorkingDir);
}
-/*
+/**
* Examines the path for "rcFile" and assign its file pointer to "fp".
*/
FILE *Paths::getPrefsFP(const char *rcFile)