mirror of
https://github.com/znc/znc.git
synced 2026-08-07 17:33:34 +02:00
Made some helper funcs const
git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@619 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
+7
-7
@@ -48,13 +48,13 @@ public:
|
||||
static bool IsLnk(const CString& sLongName, bool bUseLstat = true);
|
||||
static bool IsSock(const CString& sLongName, bool bUseLstat = false);
|
||||
|
||||
bool IsReg(bool bUseLstat = false);
|
||||
bool IsDir(bool bUseLstat = false);
|
||||
bool IsChr(bool bUseLstat = false);
|
||||
bool IsBlk(bool bUseLstat = false);
|
||||
bool IsFifo(bool bUseLstat = false);
|
||||
bool IsLnk(bool bUseLstat = true);
|
||||
bool IsSock(bool bUseLstat = false);
|
||||
bool IsReg(bool bUseLstat = false) const;
|
||||
bool IsDir(bool bUseLstat = false) const;
|
||||
bool IsChr(bool bUseLstat = false) const;
|
||||
bool IsBlk(bool bUseLstat = false) const;
|
||||
bool IsFifo(bool bUseLstat = false) const;
|
||||
bool IsLnk(bool bUseLstat = true) const;
|
||||
bool IsSock(bool bUseLstat = false) const;
|
||||
|
||||
bool access(int mode);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user