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 .SH NAME
uuid \- DCE compatible Universally Unique Identifier library uuid \- DCE compatible Universally Unique Identifier library
.SH SYNOPSIS .SH SYNOPSIS
.B #include <uuid/uuid.h> .B #include <uuid.h>
.SH DESCRIPTION .SH DESCRIPTION
The UUID library is used to generate unique identifiers for objects The UUID library is used to generate unique identifiers for objects
that may be accessible beyond the local system. This library 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 uuid_clear \- reset value of UUID variable to the NULL value
.SH SYNOPSIS .SH SYNOPSIS
.nf .nf
.B #include <uuid/uuid.h> .B #include <uuid.h>
.sp .sp
.BI "void uuid_clear(uuid_t " uu ); .BI "void uuid_clear(uuid_t " uu );
.fi .fi

View File

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

View File

@ -34,7 +34,7 @@
uuid_copy \- copy a UUID value uuid_copy \- copy a UUID value
.SH SYNOPSIS .SH SYNOPSIS
.nf .nf
.B #include <uuid/uuid.h> .B #include <uuid.h>
.sp .sp
.BI "void uuid_copy(uuid_t " dst ", uuid_t " src); .BI "void uuid_copy(uuid_t " dst ", uuid_t " src);
.fi .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 uuid_generate_time_safe \- create a new unique UUID value
.SH SYNOPSIS .SH SYNOPSIS
.nf .nf
.B #include <uuid/uuid.h> .B #include <uuid.h>
.sp .sp
.BI "void uuid_generate(uuid_t " out ); .BI "void uuid_generate(uuid_t " out );
.BI "void uuid_generate_random(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 uuid_is_null \- compare the value of the UUID to the NULL value
.SH SYNOPSIS .SH SYNOPSIS
.nf .nf
.B #include <uuid/uuid.h> .B #include <uuid.h>
.sp .sp
.BI "int uuid_is_null(uuid_t " uu ); .BI "int uuid_is_null(uuid_t " uu );
.fi .fi

View File

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

View File

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

View File

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