mirror of
https://github.com/MidnightCommander/source.git
synced 2026-02-02 11:11:55 -08:00
38 lines
4.8 KiB
HTML
38 lines
4.8 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>month</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#L129'>month</a> 129 lib/vfs/parse_ls_vga.c is_localized_month (const char *month)</span>
|
|
<span class='curline'><a href='../S/lib--vfs--parse_ls_vga.c.html#L133'>month</a> 133 lib/vfs/parse_ls_vga.c if (month == NULL)</span>
|
|
<span class='curline'><a href='../S/lib--vfs--parse_ls_vga.c.html#L136'>month</a> 136 lib/vfs/parse_ls_vga.c for (i = 0; i < 3 && *month != '\0' && !isdigit ((unsigned char) *month)</span>
|
|
<span class='curline'><a href='../S/lib--vfs--parse_ls_vga.c.html#L137'>month</a> 137 lib/vfs/parse_ls_vga.c && !iscntrl ((unsigned char) *month) && !ispunct ((unsigned char) *month);</span>
|
|
<span class='curline'><a href='../S/lib--vfs--parse_ls_vga.c.html#L138'>month</a> 138 lib/vfs/parse_ls_vga.c i++, month++)</span>
|
|
<span class='curline'><a href='../S/lib--vfs--parse_ls_vga.c.html#L141'>month</a> 141 lib/vfs/parse_ls_vga.c return (i == 3 && *month == '\0');</span>
|
|
<span class='curline'><a href='../S/lib--vfs--parse_ls_vga.c.html#L500'>month</a> 500 lib/vfs/parse_ls_vga.c static const char *month = "JanFebMarAprMayJunJulAugSepOctNovDec";</span>
|
|
<span class='curline'><a href='../S/lib--vfs--parse_ls_vga.c.html#L506'>month</a> 506 lib/vfs/parse_ls_vga.c pos = strstr (month, str);</span>
|
|
<span class='curline'><a href='../S/lib--vfs--parse_ls_vga.c.html#L511'>month</a> 511 lib/vfs/parse_ls_vga.c tim->tm_mon = (pos - month) / 3;</span>
|
|
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L160'>month</a> 160 src/vfs/ftpfs/ftpfs_parse_ls.c guess_year (int month, int day, int hour, int minute)</span>
|
|
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L169'>month</a> 169 src/vfs/ftpfs/ftpfs_parse_ls.c if (month * 32 + day > now.tm_mon * 32 + now.tm_mday + 6)</span>
|
|
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L233'>month</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#L252'>month</a> 252 src/vfs/ftpfs/ftpfs_parse_ls.c n = sscanf (s + skip, "%2d%2d%2d%2d%2d", &month, &day, &hour, &minute, &second);</span>
|
|
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L258'>month</a> 258 src/vfs/ftpfs/ftpfs_parse_ls.c tm.tm_mon = month - 1;</span>
|
|
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L455'>month</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'>month</a> 463 src/vfs/ftpfs/ftpfs_parse_ls.c if (sscanf (t, "%2d-%2d-%2d", &month, &day, &year) != 3)</span>
|
|
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L492'>month</a> 492 src/vfs/ftpfs/ftpfs_parse_ls.c tms.tm_mon = month - 1; // months since January [0, 11]</span>
|
|
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L825'>month</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'>month</a> 845 src/vfs/ftpfs/ftpfs_parse_ls.c if (sscanf (t, "%2d/%2d/%2d", &month, &day, &year) != 3)</span>
|
|
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L866'>month</a> 866 src/vfs/ftpfs/ftpfs_parse_ls.c tms.tm_mon = month - 1; // months since January [0, 11]</span>
|
|
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L928'>month</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'>month</a> 952 src/vfs/ftpfs/ftpfs_parse_ls.c if (sscanf (t, "%2d-%2d-%2d", &month, &day, &year) != 3)</span>
|
|
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L969'>month</a> 969 src/vfs/ftpfs/ftpfs_parse_ls.c tms.tm_mon = month - 1; // months since January [0, 11]</span>
|
|
</pre>
|
|
</body>
|
|
</html>
|