diff options
author | Theodore Ts'o <tytso@mit.edu> | 2004-04-03 10:48:25 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2004-04-03 10:48:25 -0500 |
commit | 31808116a1e9e43c0a2ef675c66030db3bdc7fa9 (patch) | |
tree | 772808fbdebe5b690ce7ac95e6f2f39ffc372a05 /lib | |
parent | 2625803ecff90ba8ab60d3c6b83a1ea0c91d2294 (diff) | |
download | e2fsprogs-31808116a1e9e43c0a2ef675c66030db3bdc7fa9.tar.gz |
Change the use of the term "internal format" to "binary representation"
in the uuid_parse and uuid_unparse man pages.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/uuid/ChangeLog | 3 | ||||
-rw-r--r-- | lib/uuid/uuid_parse.3.in | 6 | ||||
-rw-r--r-- | lib/uuid/uuid_unparse.3.in | 4 |
3 files changed, 7 insertions, 6 deletions
diff --git a/lib/uuid/ChangeLog b/lib/uuid/ChangeLog index c7a7c336..da177862 100644 --- a/lib/uuid/ChangeLog +++ b/lib/uuid/ChangeLog @@ -1,5 +1,8 @@ 2004-04-03 Theodore Ts'o <tytso@mit.edu> + * uuid_parse.3.in, uuid_unparse.3.in: Change the use of the term + "internal format" to "binary representation". + * gen_uuid.c, pack.c, unpack.c, uuid_time.c, uuidP.h, uuid_types.h.in: Use ANSI C99 types if stdint.h exists. diff --git a/lib/uuid/uuid_parse.3.in b/lib/uuid/uuid_parse.3.in index d0b646d2..580052a8 100644 --- a/lib/uuid/uuid_parse.3.in +++ b/lib/uuid/uuid_parse.3.in @@ -7,7 +7,7 @@ .\" Created Wed Mar 10 17:42:12 1999, Andreas Dilger .TH UUID_PARSE 3 "@E2FSPROGS_MONTH@ @E2FSPROGS_YEAR@" "E2fsprogs version @E2FSPROGS_VERSION@" .SH NAME -uuid_parse \- convert an input UUID string into the libuuid internal format +uuid_parse \- convert an input UUID string into binary representation .SH SYNOPSIS .nf .B #include <uuid/uuid.h> @@ -19,9 +19,7 @@ The .B uuid_parse function converts the UUID string given by .I in -into the internal -.B uuid_t -format. The input UUID is a string of the form +into the binary representation. The input UUID is a string of the form 1b4e28ba\-2fa1\-11d2\-883f\-b9a761bde3fb (in .BR printf (3) format "%08x\-%04x\-%04x\-%04x\-%012x", 36 bytes plus the trailing '\\0'). diff --git a/lib/uuid/uuid_unparse.3.in b/lib/uuid/uuid_unparse.3.in index 80aa9a81..eda2eac7 100644 --- a/lib/uuid/uuid_unparse.3.in +++ b/lib/uuid/uuid_unparse.3.in @@ -7,7 +7,7 @@ .\" Created Wed Mar 10 17:42:12 1999, Andreas Dilger .TH UUID_UNPARSE 3 "@E2FSPROGS_MONTH@ @E2FSPROGS_YEAR@" "E2fsprogs version @E2FSPROGS_VERSION@" .SH NAME -uuid_unparse \- output UUID variable in string format +uuid_unparse \- convert an UUID from binary representation to a string .SH SYNOPSIS .nf .B #include <uuid/uuid.h> @@ -21,7 +21,7 @@ The .B uuid_unparse function converts the supplied UUID .I uu -from the internal binary format into a 36\-byte string (plus tailing '\\0') +from the binary representation into a 36\-byte string (plus tailing '\\0') of the form 1b4e28ba\-2fa1\-11d2\-883f\-b9a76 and stores this value in the character string pointed to by .IR out . |