Commit 94b4ba74 authored by marko's avatar marko

branches/zip: ib_vector_is_empty(): Fix the function comment.

parent 10b11254
...@@ -81,8 +81,9 @@ Test whether a vector is empty or not. */ ...@@ -81,8 +81,9 @@ Test whether a vector is empty or not. */
UNIV_INLINE UNIV_INLINE
ibool ibool
ib_vector_is_empty( ib_vector_is_empty(
/*===============*/ /* out: TRUE if empty else FALSE */ /*===============*/
const ib_vector_t* vec) /* in vector to test */ /* out: TRUE if empty */
const ib_vector_t* vec) /* in: vector */
{ {
return(ib_vector_size(vec) == 0); return(ib_vector_size(vec) == 0);
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment