inline and _inline

There's no  functional difference. "__inline__" is  a reserved keyword
in  C so  it's  safe(ish) to  use in  headers  that might  be seen  by
arbitrary  user applications. For  stuff that  only the  kernel proper
uses, "inline" is slightly more readable.

你可能感兴趣的:(c,user)