Returns the error string for the specified ASC function error code.
#include <ascauth.h>
const char *ASC_STRERROR(int errnum);
Returns a static character string corresponding to the integer errnum value as defined in ascauth.h for ASC function error codes.
#include <stdio.h> #include <stdlib.h> #include <ascauth.h> rc = ASC_CHKPASSWD(asce, userid, password, &ascu); strcpy(status, ASC_STRERROR(rc)); printf("\n*** CHKPASSWD return code = %d (%s)\n", rc,status);