| static errno_t __cdecl _int_asctime_s (char *, size_t, const struct tm *); |
| static errno_t __cdecl _stub (char *, size_t, const struct tm *); |
| errno_t __cdecl (*__MINGW_IMP_SYMBOL(asctime_s))(char *, size_t, const struct tm *) = |
| _stub (char *d, size_t dn, const struct tm *pt) |
| errno_t __cdecl (*f)(char *, size_t, const struct tm *) = __MINGW_IMP_SYMBOL(asctime_s); |
| GetProcAddress (__mingw_get_msvcrt_handle (), "asctime_s"); |
| __MINGW_IMP_SYMBOL(asctime_s) = f; |
| asctime_s (char *d, size_t dn, const struct tm *pt) |
| return _stub (d, dn, pt); |
| _int_asctime_s (char *d, size_t dn, const struct tm *pt) |
| if (!d || dn < 26 || !pt || (tmp = asctime (pt)) == NULL) |
| for (i = 0; tmp[i] != 0; i++) |