1998-10-08 06:53:32 +00:00
|
|
|
.\"
|
|
|
|
.\" Copyright (c) 1998 Jordan Hubbard
|
|
|
|
.\"
|
|
|
|
.\" All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
.\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
.\"
|
1998-10-14 11:04:36 +00:00
|
|
|
.\" $Id: property.3,v 1.2 1998/10/09 07:33:58 jkh Exp $
|
1998-10-08 06:53:32 +00:00
|
|
|
.\" "
|
|
|
|
.Dd October 7, 1998
|
|
|
|
.Os
|
|
|
|
.Dt properties 3
|
|
|
|
.Sh NAME
|
|
|
|
.Nm properties_read ,
|
|
|
|
.Nm propery_find ,
|
|
|
|
.Nm properties_free
|
|
|
|
.Nd functions to allow creating simple property lists from ascii file data.
|
|
|
|
.Sh SYNOPSIS
|
|
|
|
.Fd #include <sys/types.h>
|
|
|
|
.Fd #include <libutil.h>
|
|
|
|
.Ft properties
|
1998-10-09 07:33:58 +00:00
|
|
|
.Fn properties_read "int fd"
|
1998-10-08 06:53:32 +00:00
|
|
|
.Ft char *
|
1998-10-14 11:04:36 +00:00
|
|
|
.Fn property_find "properties list" "char *name"
|
1998-10-08 06:53:32 +00:00
|
|
|
.Ft void
|
|
|
|
.Fn properties_free "properties list"
|
|
|
|
.Pp
|
|
|
|
Link with
|
|
|
|
.Va -lutil
|
|
|
|
on the
|
|
|
|
.Xr cc 1
|
|
|
|
command line.
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
.nf
|
|
|
|
typedef struct _properties {
|
|
|
|
struct _properties *next;
|
|
|
|
char *name;
|
|
|
|
char *value;
|
|
|
|
} *properties;
|
|
|
|
.fi
|
|
|
|
|
|
|
|
The function
|
|
|
|
.Fn properties_read
|
|
|
|
reads
|
|
|
|
.Fa name = value
|
1998-10-09 07:33:58 +00:00
|
|
|
pairs from the file descriptor passed in
|
|
|
|
.Fa fd
|
1998-10-08 06:53:32 +00:00
|
|
|
and returns the head of a new property list, assuming that the
|
|
|
|
file's contents have been parsed properly, or NULL in case
|
|
|
|
of error. The property list pointer should be passed to
|
|
|
|
.Fn properties_free
|
|
|
|
when no longer needed.
|
|
|
|
.Pp
|
|
|
|
.Fn property_find
|
|
|
|
Returns the associated value string for the property named
|
|
|
|
.Fa name
|
|
|
|
if found, otherwise NULL.
|
|
|
|
.Pp
|
|
|
|
.Fn properties_free
|
|
|
|
is used to free the structure returned by
|
|
|
|
.Fn properties_read
|
|
|
|
when it is no longer needed.
|
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr auth_getval 3
|
|
|
|
.Sh BUGS
|
|
|
|
Simplistic.
|