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

50 lines
6.7 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>year</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/lib--vfs--parse_ls_vga.c.html#L181'>year</a> 181 lib/vfs/parse_ls_vga.c long year;</span>
<span class='curline'><a href='../S/lib--vfs--parse_ls_vga.c.html#L192'>year</a> 192 lib/vfs/parse_ls_vga.c if (sscanf (str, "%ld", &amp;year) != 1)</span>
<span class='curline'><a href='../S/lib--vfs--parse_ls_vga.c.html#L195'>year</a> 195 lib/vfs/parse_ls_vga.c if (year &lt; 1900 || year &gt; 3000)</span>
<span class='curline'><a href='../S/lib--vfs--parse_ls_vga.c.html#L198'>year</a> 198 lib/vfs/parse_ls_vga.c tim-&gt;tm_year = (int) (year - 1900);</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L162'>year</a> 162 src/vfs/ftpfs/ftpfs_parse_ls.c int year;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L167'>year</a> 167 src/vfs/ftpfs/ftpfs_parse_ls.c year = now.tm_year + 1900;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L170'>year</a> 170 src/vfs/ftpfs/ftpfs_parse_ls.c year--;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L172'>year</a> 172 src/vfs/ftpfs/ftpfs_parse_ls.c return year;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L178'>year</a> 178 src/vfs/ftpfs/ftpfs_parse_ls.c parse_year_or_time (const char *year_or_time, int *year, int *hour, int *minute)</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L185'>year</a> 185 src/vfs/ftpfs/ftpfs_parse_ls.c *year = -1;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L189'>year</a> 189 src/vfs/ftpfs/ftpfs_parse_ls.c if (sscanf (year_or_time, "%d", year) != 1)</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L233'>year</a> 233 src/vfs/ftpfs/ftpfs_parse_ls.c int year, month, day, hour, minute, second;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L239'>year</a> 239 src/vfs/ftpfs/ftpfs_parse_ls.c n = sscanf (s, "%4d%n", &amp;year, &amp;skip);</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L243'>year</a> 243 src/vfs/ftpfs/ftpfs_parse_ls.c if (n == 1 &amp;&amp; year &gt;= 1910 &amp;&amp; year &lt;= 1930)</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L245'>year</a> 245 src/vfs/ftpfs/ftpfs_parse_ls.c n = sscanf (s, "%5d%n", &amp;year, &amp;skip);</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L246'>year</a> 246 src/vfs/ftpfs/ftpfs_parse_ls.c year = year - 19100 + 2000;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L257'>year</a> 257 src/vfs/ftpfs/ftpfs_parse_ls.c tm.tm_year = year - 1900;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L455'>year</a> 455 src/vfs/ftpfs/ftpfs_parse_ls.c int month, day, year, hour, minute;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L463'>year</a> 463 src/vfs/ftpfs/ftpfs_parse_ls.c if (sscanf (t, "%2d-%2d-%2d", &amp;month, &amp;day, &amp;year) != 3)</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L465'>year</a> 465 src/vfs/ftpfs/ftpfs_parse_ls.c if (year &gt;= 70)</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L466'>year</a> 466 src/vfs/ftpfs/ftpfs_parse_ls.c year += 1900;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L468'>year</a> 468 src/vfs/ftpfs/ftpfs_parse_ls.c year += 2000;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L493'>year</a> 493 src/vfs/ftpfs/ftpfs_parse_ls.c tms.tm_year = year - 1900; // years since 1900</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L825'>year</a> 825 src/vfs/ftpfs/ftpfs_parse_ls.c int month, day, year, hour, minute, second;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L845'>year</a> 845 src/vfs/ftpfs/ftpfs_parse_ls.c if (sscanf (t, "%2d/%2d/%2d", &amp;month, &amp;day, &amp;year) != 3)</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L847'>year</a> 847 src/vfs/ftpfs/ftpfs_parse_ls.c if (year &gt;= 70)</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L848'>year</a> 848 src/vfs/ftpfs/ftpfs_parse_ls.c year += 1900;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L850'>year</a> 850 src/vfs/ftpfs/ftpfs_parse_ls.c year += 2000;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L867'>year</a> 867 src/vfs/ftpfs/ftpfs_parse_ls.c tms.tm_year = year - 1900; // years since 1900</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L928'>year</a> 928 src/vfs/ftpfs/ftpfs_parse_ls.c int month, day, year, hour, minute;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L952'>year</a> 952 src/vfs/ftpfs/ftpfs_parse_ls.c if (sscanf (t, "%2d-%2d-%2d", &amp;month, &amp;day, &amp;year) != 3)</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L954'>year</a> 954 src/vfs/ftpfs/ftpfs_parse_ls.c if (year &gt;= 70)</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L955'>year</a> 955 src/vfs/ftpfs/ftpfs_parse_ls.c year += 1900;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L957'>year</a> 957 src/vfs/ftpfs/ftpfs_parse_ls.c year += 2000;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L970'>year</a> 970 src/vfs/ftpfs/ftpfs_parse_ls.c tms.tm_year = year - 1900; // years since 1900</span>
</pre>
</body>
</html>