Changeset 3682 for trunk/src/lib/nt/ntopenat.c
- Timestamp:
- Aug 13, 2025, 1:34:19 AM (4 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/nt/ntopenat.c
r3601 r3682 40 40 #include "ntstuff.h" 41 41 #include "nthlp.h" 42 #include "nthlpmisc.h" 42 43 #include "ntopenat.h" 43 44 #include "ntstat.h" 44 45 46 #define IS_ALPHA(ch) ( ((ch) >= 'A' && (ch) <= 'Z') || ((ch) >= 'a' && (ch) <= 'z') )47 #define IS_SLASH(ch) ((ch) == '\\' || (ch) == '/')48 49 45 50 46 … … 95 91 96 92 93 /** 94 * Implements open. 95 */ 97 96 int birdOpen(const char *pszPath, int fFlags, ...) 98 97 { … … 160 159 } 161 160 162
Note:
See TracChangeset
for help on using the changeset viewer.