summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2007-10-09 09:25:32 +0000
committerRoy Marples <roy@marples.name>2007-10-09 09:25:32 +0000
commitee1b7d01414b9913f518c333509cceecc16cec38 (patch)
tree1682d66cbf2707c994ec016b5612f293f24688c7
parent3da29223584b1a336be6ba6c257f748196146a9d (diff)
downloadopenrc-ee1b7d01414b9913f518c333509cceecc16cec38.tar.gz
openrc-ee1b7d01414b9913f518c333509cceecc16cec38.tar.bz2
openrc-ee1b7d01414b9913f518c333509cceecc16cec38.tar.xz
Tidy up
-rw-r--r--src/rc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rc.h b/src/rc.h
index 049e56b..e5aa8ef 100644
--- a/src/rc.h
+++ b/src/rc.h
@@ -324,7 +324,8 @@ int rc_plugin_hook (rc_hook_t hook, const char *name);
* variables they wish. Variables should be separated by NULLs. */
extern FILE *rc_environ_fd;
-/*! @name Configuration */
+/*! @name Configuration
+ * These functions help to deal with shell based configuration files */
/*! Return a NULL terminated list of non comment lines from a file. */
char **rc_config_list (const char *file);
@@ -345,7 +346,7 @@ bool rc_env_bool (const char *variable);
* Handy functions for dealing with string arrays of char **.
* It's safe to assume that any function here that uses char ** is a string
* list that can be manipulated with the below functions. Every string list
- * should be released with a call to rc_strlist_free.*/
+ * should be released with a call to rc_strlist_free. */
/*! Duplicate the item, add it to end of the list and return a pointer to it.
* @param list to add the item too
@@ -421,5 +422,4 @@ char *rc_strcatpaths (const char *path1, const char *paths, ...) SENTINEL;
pid_t *rc_find_pids (const char *exec, const char *cmd,
uid_t uid, pid_t pid);
-
#endif