logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

genders_handle_destroy - destroys a genders handle

Description

genders_handle_destroy()  destroys the genders handle pointed to by handle and frees all allocated memory
       associated with it.

Errors

GENDERS_ERR_NULLHANDLE
              The handle parameter is NULL.  The genders handle must be created with genders_handle_create(3).

       GENDERS_ERR_MAGIChandle  has  an  incorrect  magic number.  handle does not point to a genders handle or handle has
              already been destroyed.

Files

       /usr/include/genders.h

Name

       genders_handle_destroy - destroys a genders handle

Return Values

       On success, 0 is returned.  On error, -1 is returned, and an error code is returned in handle.  The error
       code can be retrieved via genders_errnum(3) , and a description of the error code can  be  retrieved  via
       genders_strerror(3).  Error codes are defined in genders.h.

See Also

libgenders(3), genders_handle_create(3), genders_load_data(3), genders_errnum(3), genders_strerror(3)

LLNL                                               August 2003                         GENDERS_HANDLE_DESTROY(3)

Synopsis

#include<genders.h>intgenders_handle_destroy(genders_thandle);

See Also