strerror#

Message string for an errno value.

תקציר#

use POSIX qw(strerror);
print strerror($!);

מה מוחזר#

A byte string in the current locale, like "No such file or directory". For unknown error numbers, libc returns an implementation-defined placeholder.

הבדלים מן ה-upstream#

Fully compatible with upstream POSIX.