linux 中的errno 和 strerror(errno)
Posted jyfyonghu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 中的errno 和 strerror(errno)相关的知识,希望对你有一定的参考价值。
1. errno.h 中包含 errno 这个错误保存值
string.h 包含 strerror() 函数 ,它的原型 是 char *strerror(int errnum);
输入值应该是errno,返回值是 errno 对应的 错误提示字符串
stdio.h 包含perror() 函数,它的原型是 void perror(char * string),即使string为空,它也会把strerror(errno)的内容打印出来
参考博客:https://www.cnblogs.com/Jimmy1988/p/7485133.html
以上是关于linux 中的errno 和 strerror(errno)的主要内容,如果未能解决你的问题,请参考以下文章
GetLastError()、errno、FormatMessageA() 和 strerror_s()?