📄 errno.c
字号:
const char *__strerrTable[] = { "No error", /* */ "Unspecified error", /* EUNSPECIFIED */ "No such file or directory", /* ENOTFOUND */ "Operation not supported", /* EUNSUPPORTED */ "No such device", /* ENODEV */ "Input/output error", /* EIO */ "Resource in use", /* EBUSY */ "Out of memory", /* ENOMEM */ "No such filesystem", /* ENOFILESYS */ "Name too long", /* ENAMETOOLONG */ "Invalid format for filesystem", /* EINVALIDFS */ "Permission denied", /* EACCESS */ "Invalid argument", /* EINVALID */ "File descriptor table full", /* EMFILE */ "Not a directory", /* ENOTDIR */ "File or directory already exists", /* EEXIST */ "Out of space on device", /* ENOSPACE */ "Pipe has no reader", /* EPIPE */ "Invalid executable format", /* ENOEXEC */};const int __strerrTableSize = sizeof(__strerrTable) / sizeof(const char *);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -