Files
source/Y/date.html
github-actions[bot] 08571174ab Deploy to GitHub Pages
2026-02-01 17:32:02 +00:00

49 lines
6.5 KiB
HTML

<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
<title>date</title>
<meta name='robots' content='noindex,nofollow' />
<meta name='generator' content='GLOBAL-6.6.11' />
<meta http-equiv='Content-Style-Type' content='text/css' />
<link rel='stylesheet' type='text/css' href='../style.css' />
</head>
<body>
<pre>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L285'>date</a> 285 src/vfs/ftpfs/ftpfs_parse_ls.c struct tm date;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L354'>date</a> 354 src/vfs/ftpfs/ftpfs_parse_ls.c memset (&amp;date, 0, sizeof (date));</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L356'>date</a> 356 src/vfs/ftpfs/ftpfs_parse_ls.c if (!vfs_parse_month (t, &amp;date))</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L357'>date</a> 357 src/vfs/ftpfs/ftpfs_parse_ls.c date.tm_mon = 0;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L362'>date</a> 362 src/vfs/ftpfs/ftpfs_parse_ls.c date.tm_mday = atoi (day_of_month);</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L368'>date</a> 368 src/vfs/ftpfs/ftpfs_parse_ls.c date.tm_isdst = -1;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L369'>date</a> 369 src/vfs/ftpfs/ftpfs_parse_ls.c date.tm_hour = date.tm_min = 0;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L370'>date</a> 370 src/vfs/ftpfs/ftpfs_parse_ls.c date.tm_sec = 30;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L372'>date</a> 372 src/vfs/ftpfs/ftpfs_parse_ls.c if (sscanf (t, "%2d:%2d", &amp;date.tm_hour, &amp;date.tm_min) == 2)</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L373'>date</a> 373 src/vfs/ftpfs/ftpfs_parse_ls.c date.tm_year = guess_year (date.tm_mon, date.tm_mday, date.tm_hour, date.tm_min) - 1900;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L378'>date</a> 378 src/vfs/ftpfs/ftpfs_parse_ls.c date.tm_year = atoi (t) - 1900;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L381'>date</a> 381 src/vfs/ftpfs/ftpfs_parse_ls.c date.tm_hour = 12;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L382'>date</a> 382 src/vfs/ftpfs/ftpfs_parse_ls.c date.tm_min = 0;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L383'>date</a> 383 src/vfs/ftpfs/ftpfs_parse_ls.c date.tm_sec = 0;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L386'>date</a> 386 src/vfs/ftpfs/ftpfs_parse_ls.c s-&gt;st_mtime = mktime (&amp;date);</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L550'>date</a> 550 src/vfs/ftpfs/ftpfs_parse_ls.c time_t date = NO_DATE;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L587'>date</a> 587 src/vfs/ftpfs/ftpfs_parse_ls.c date = date_l;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L628'>date</a> 628 src/vfs/ftpfs/ftpfs_parse_ls.c if (date != NO_DATE)</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L630'>date</a> 630 src/vfs/ftpfs/ftpfs_parse_ls.c s-&gt;st_mtime = date;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L659'>date</a> 659 src/vfs/ftpfs/ftpfs_parse_ls.c time_t date = NO_DATE;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L703'>date</a> 703 src/vfs/ftpfs/ftpfs_parse_ls.c date = ftpfs_convert_date (tok + 7);</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L779'>date</a> 779 src/vfs/ftpfs/ftpfs_parse_ls.c if (date != NO_DATE)</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L781'>date</a> 781 src/vfs/ftpfs/ftpfs_parse_ls.c s-&gt;st_mtime = date;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L997'>date</a> 997 src/vfs/ftpfs/ftpfs_parse_ls.c struct tm date;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L1050'>date</a> 1050 src/vfs/ftpfs/ftpfs_parse_ls.c memset (&amp;date, 0, sizeof (date));</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L1052'>date</a> 1052 src/vfs/ftpfs/ftpfs_parse_ls.c if (!vfs_parse_month (t, &amp;date))</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L1059'>date</a> 1059 src/vfs/ftpfs/ftpfs_parse_ls.c date.tm_mday = atoi (day_of_month);</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L1065'>date</a> 1065 src/vfs/ftpfs/ftpfs_parse_ls.c if (!parse_year_or_time (t, &amp;date.tm_year, &amp;date.tm_hour, &amp;date.tm_min))</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L1068'>date</a> 1068 src/vfs/ftpfs/ftpfs_parse_ls.c date.tm_isdst = -1;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L1069'>date</a> 1069 src/vfs/ftpfs/ftpfs_parse_ls.c date.tm_sec = 30;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L1070'>date</a> 1070 src/vfs/ftpfs/ftpfs_parse_ls.c if (date.tm_year == -1)</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L1071'>date</a> 1071 src/vfs/ftpfs/ftpfs_parse_ls.c date.tm_year = guess_year (date.tm_mon, date.tm_mday, date.tm_hour, date.tm_min) - 1900;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L1073'>date</a> 1073 src/vfs/ftpfs/ftpfs_parse_ls.c date.tm_hour = 12;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L1075'>date</a> 1075 src/vfs/ftpfs/ftpfs_parse_ls.c s-&gt;st_mtime = mktime (&amp;date);</span>
</pre>
</body>
</html>