summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2008-03-17 21:27:37 +0000
committerRoy Marples <roy@marples.name>2008-03-17 21:27:37 +0000
commit51c825ceee9f86deb1afc20f4406c2c8dbb3d705 (patch)
tree0dac5ab5cf9e3a54a5fabd9bf8d32ddf1f578bf3 /man
parentb9eb450696eec614acc983648e2ab04f3fd44463 (diff)
downloadopenrc-51c825ceee9f86deb1afc20f4406c2c8dbb3d705.tar.gz
openrc-51c825ceee9f86deb1afc20f4406c2c8dbb3d705.tar.bz2
openrc-51c825ceee9f86deb1afc20f4406c2c8dbb3d705.tar.xz
Make rc_getline private and save it's buffer so it's sort of like getline from glibc.
Diffstat (limited to 'man')
-rw-r--r--man/rc_config.313
1 files changed, 2 insertions, 11 deletions
diff --git a/man/rc_config.3 b/man/rc_config.3
index f420d43..2bf90a1 100644
--- a/man/rc_config.3
+++ b/man/rc_config.3
@@ -22,17 +22,16 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.Dd Mar 16, 2008
+.Dd Mar 17, 2008
.Dt RC_CONFIG 3 SMM
.Os OpenRC
.Sh NAME
-.Nm rc_getline , rc_config_list , rc_config_load , rc_config_value , rc_yesno
+.Nm rc_config_list , rc_config_load , rc_config_value , rc_yesno
.Nd functions to query OpenRC service configurations
.Sh LIBRARY
Run Command library (librc, -lrc)
.Sh SYNOPSIS
.In rc.h
-.Ft "char *" Fn rc_getline "FILE *fp"
.Ft "RC_STRINGLIST *" Fn rc_config_list "const char *file"
.Ft "RC_STRINGLIST *" Fn rc_config_load "const char *file"
.Ft "char *" Fn rc_config_value "const char *const *list" "const char *entry"
@@ -40,14 +39,6 @@ Run Command library (librc, -lrc)
.Sh DESCRIPTION
These functions provide an easy means of querying OpenRC configuration files.
.Pp
-.Fn rc_getline
-expands it's buffer using
-.Fn malloc
-until it has read a whole line from the file or EOF.
-Trailing newlines are removed and the buffer is returned. Any functions that
-read from files should use this function to avoid any potential overflows and
-to ensure that arbitary long lines are read.
-.Pp
.Fn rc_config_list
returns a list of non comment lines in
.Fa file .