libuuid: fix includes in man pages

Signed-off-by: Karel Zak <kzak@redhat.com>
This commit is contained in:
Karel Zak 2011-10-27 23:28:05 +02:00
parent 61a074f712
commit 8890b9138b
9 changed files with 9 additions and 9 deletions

View File

@ -33,7 +33,7 @@
.SH NAME
uuid \- DCE compatible Universally Unique Identifier library
.SH SYNOPSIS
.B #include <uuid/uuid.h>
.B #include <uuid.h>
.SH DESCRIPTION
The UUID library is used to generate unique identifiers for objects
that may be accessible beyond the local system. This library

View File

@ -34,7 +34,7 @@
uuid_clear \- reset value of UUID variable to the NULL value
.SH SYNOPSIS
.nf
.B #include <uuid/uuid.h>
.B #include <uuid.h>
.sp
.BI "void uuid_clear(uuid_t " uu );
.fi

View File

@ -34,7 +34,7 @@
uuid_compare \- compare whether two UUIDs are the same
.SH SYNOPSIS
.nf
.B #include <uuid/uuid.h>
.B #include <uuid.h>
.sp
.BI "int uuid_compare(uuid_t " uu1 ", uuid_t " uu2)
.fi

View File

@ -34,7 +34,7 @@
uuid_copy \- copy a UUID value
.SH SYNOPSIS
.nf
.B #include <uuid/uuid.h>
.B #include <uuid.h>
.sp
.BI "void uuid_copy(uuid_t " dst ", uuid_t " src);
.fi

View File

@ -35,7 +35,7 @@ uuid_generate, uuid_generate_random, uuid_generate_time,
uuid_generate_time_safe \- create a new unique UUID value
.SH SYNOPSIS
.nf
.B #include <uuid/uuid.h>
.B #include <uuid.h>
.sp
.BI "void uuid_generate(uuid_t " out );
.BI "void uuid_generate_random(uuid_t " out );

View File

@ -34,7 +34,7 @@
uuid_is_null \- compare the value of the UUID to the NULL value
.SH SYNOPSIS
.nf
.B #include <uuid/uuid.h>
.B #include <uuid.h>
.sp
.BI "int uuid_is_null(uuid_t " uu );
.fi

View File

@ -34,7 +34,7 @@
uuid_parse \- convert an input UUID string into binary representation
.SH SYNOPSIS
.nf
.B #include <uuid/uuid.h>
.B #include <uuid.h>
.sp
.BI "int uuid_parse( char *" in ", uuid_t " uu );
.fi

View File

@ -34,7 +34,7 @@
uuid_time \- extract the time at which the UUID was created
.SH SYNOPSIS
.nf
.B #include <uuid/uuid.h>
.B #include <uuid.h>
.sp
.BI "time_t uuid_time(uuid_t " uu ", struct timeval *" ret_tv )
.fi

View File

@ -34,7 +34,7 @@
uuid_unparse \- convert an UUID from binary representation to a string
.SH SYNOPSIS
.nf
.B #include <uuid/uuid.h>
.B #include <uuid.h>
.sp
.BI "void uuid_unparse(uuid_t " uu ", char *" out );
.BI "void uuid_unparse_upper(uuid_t " uu ", char *" out );