From de0d96dd53387537cf500bf0ba7cebbf8dfc8320 Mon Sep 17 00:00:00 2001 From: Frank Baker Date: Fri, 28 May 1999 15:09:10 -0500 Subject: [svn-r1287] Attributes.html RM_H5A.html Fix bug #326, which pointed out that the H5Aget_name parameters were listed in the wrong order. --- doc/html/Attributes.html | 2 +- doc/html/RM_H5A.html | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/html/Attributes.html b/doc/html/Attributes.html index b50b95a..7672d0d 100644 --- a/doc/html/Attributes.html +++ b/doc/html/Attributes.html @@ -218,7 +218,7 @@ And in this document, the This function returns a datatype ID for success or negative for failure.

size_t H5Aget_name (hid_t attr_id, - char *buf, size_t buf_size) + size_t buf_size, char *buf)
This function retrieves the name of an attribute for an attribute ID. Up to buf_size characters are stored in buf followed by a '\0' string terminator. If the name of the attribute is longer than diff --git a/doc/html/RM_H5A.html b/doc/html/RM_H5A.html index 24debde..0417752 100644 --- a/doc/html/RM_H5A.html +++ b/doc/html/RM_H5A.html @@ -341,8 +341,8 @@ See Attributes in the
Name: H5Aget_name
Signature:
hssize_t H5Aget_name(hid_t attr_id, - char *buf, - size_t buf_size + size_t buf_size, + char *buf )
Purpose:
Gets an attribute name. @@ -358,10 +358,10 @@ See Attributes in the
hid_t attr_id
IN: Identifier of the attribute. -
char *buf -
IN: Buffer to store name in.
size_t buf_size
IN: The size of the buffer to store the name in. +
char *buf +
IN: Buffer to store name in.
Returns:
Returns the length of the attribute's name, which may be -- cgit v0.12