MCPcopy Create free account
hub / github.com/abbeycode/UnrarKit / IsLink

Function IsLink

Libraries/unrar/filefn.cpp:238–247  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

236
237
238bool IsLink(uint Attr)
239{
240#ifdef _UNIX
241 return (Attr & 0xF000)==0xA000;
242#elif defined(_WIN_ALL)
243 return (Attr & FILE_ATTRIBUTE_REPARSE_POINT)!=0;
244#else
245 return false;
246#endif
247}
248
249
250

Callers 3

ExtractUnixLink30Function · 0.85
NextMethod · 0.85
FastFindMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected