Ignore:
Timestamp:
Aug 13, 2025, 1:34:19 AM (4 weeks ago)
Author:
bird
Message:

lib/nt,kmk: Fixed around rm/unlink semantics and general support for long file names in lib/nt.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/nt/ntopenat.c

    r3601 r3682  
    4040#include "ntstuff.h"
    4141#include "nthlp.h"
     42#include "nthlpmisc.h"
    4243#include "ntopenat.h"
    4344#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 
    4945
    5046
     
    9591
    9692
     93/**
     94 * Implements open.
     95 */
    9796int birdOpen(const char *pszPath, int fFlags, ...)
    9897{
     
    160159}
    161160
    162 
Note: See TracChangeset for help on using the changeset viewer.