What does double underscore ( __const) mean in C?

前端 未结 4 829
一向
一向 2020-11-22 02:52
extern int ether_hostton (__const char *__hostname, struct ether_addr *__addr)
 __THROW;

I found the above function definition in /usr/include/neti

4条回答
  •  日久生厌
    2020-11-22 03:45

    By convention in some libraries, this indicates that a particular symbol is for internal use and not intended to be part of the public API of the library.

提交回复
热议问题