Is the function strcmpi in the C standard libary of ISO?

前端 未结 3 1508
梦谈多话
梦谈多话 2020-12-04 02:36

I noticed that the difference between linux and windows. strcmpi is in windows C standard libary implementation but it is not in GNU\'s C standard libary implementation. Is

3条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-04 03:12

    Nope, a quick CTRL+F in the standard returns nothing for strcmpi. This means that it is a non-standard extension (of which both Windows and GNU have a lot).

提交回复
热议问题