D | c_locale_win32.c | 32 # define _STLP_STRCPY(D, DS, S) strcpy_s(D, DS, S) argument 33 # define _STLP_STRNCPY(D, DS, S, C) strncpy_s(D, DS, S, C) argument 34 # define _STLP_STRCAT(D, DS, S) strcat_s(D, DS, S) argument 36 # define _STLP_STRCPY(D, DS, S) strcpy(D, S) argument 37 # define _STLP_STRNCPY(D, DS, S, C) strncpy(D, S, C) argument 38 # define _STLP_STRCAT(D, DS, S) strcat(D, S) argument
|