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

ustrerror - Returns a string describing errno. Allegro game programming library.

Description

       This  function  returns  a  string  that  describes  the  error code `err', which normally comes from the
       variable `errno'. Example:

          PACKFILE *input_file = pack_fopen("badname", "r");
          if (input_file == NULL)
             allegro_message("%s\nSorry!\n", ustrerror(errno));

Name

       ustrerror - Returns a string describing errno. Allegro game programming library.

Return Value

       Returns a pointer to a static string that should not be modified or freed. If you make  subsequent  calls
       to ustrerror(), the string will be overwritten.

See Also

uconvert(3alleg4), allegro_error(3alleg4)

Allegro                                           version 4.4.3                               ustrerror(3alleg4)

Synopsis

#include<allegro.h>constchar*ustrerror(interr);

See Also