src/java.base/share/native/libjli/jli_util.h
changeset 59217 82db5000a845
parent 53656 645ba889ee5f
equal deleted inserted replaced
59216:47c879f478d2 59217:82db5000a845
    78 #define JLI_StrNCpy(p1, p2, p3) strncpy((p1), (p2), (p3))
    78 #define JLI_StrNCpy(p1, p2, p3) strncpy((p1), (p2), (p3))
    79 #define JLI_StrStr(p1, p2)      strstr((p1), (p2))
    79 #define JLI_StrStr(p1, p2)      strstr((p1), (p2))
    80 #define JLI_StrSpn(p1, p2)      strspn((p1), (p2))
    80 #define JLI_StrSpn(p1, p2)      strspn((p1), (p2))
    81 #define JLI_StrCSpn(p1, p2)     strcspn((p1), (p2))
    81 #define JLI_StrCSpn(p1, p2)     strcspn((p1), (p2))
    82 #define JLI_StrPBrk(p1, p2)     strpbrk((p1), (p2))
    82 #define JLI_StrPBrk(p1, p2)     strpbrk((p1), (p2))
    83 #define JLI_StrTok(p1, p2)      strtok((p1), (p2))
       
    84 
    83 
    85 /* On Windows lseek() is in io.h rather than the location dictated by POSIX. */
    84 /* On Windows lseek() is in io.h rather than the location dictated by POSIX. */
    86 #ifdef _WIN32
    85 #ifdef _WIN32
    87 #include <windows.h>
    86 #include <windows.h>
    88 #include <io.h>
    87 #include <io.h>