mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
89fc95fefd
🚨 clang-format changes output per version!
This is with version 19.0.0. The modifications seem to be fixing the old
version’s errors - mainly involving omitted whitespace around binary ops
and inserted whitespace between goto labels and colons (if followed by a
curly brace.)
Also fixes a few mistakes made by e.g. someone (ahem) forgetting to pass
his ctl/string.h modifications through it.
We should add this to .git-blame-ignore-revs once we have its final hash
on master.
9 lines
301 B
C
9 lines
301 B
C
#ifndef COSMOPOLITAN_LIBC_DOS_H_
|
|
#define COSMOPOLITAN_LIBC_DOS_H_
|
|
|
|
#define DOS_DATE(YEAR, MONTH_IDX1, DAY_IDX1) \
|
|
(((YEAR) - 1980) << 9 | (MONTH_IDX1) << 5 | (DAY_IDX1))
|
|
#define DOS_TIME(HOUR, MINUTE, SECOND) \
|
|
((HOUR) << 11 | (MINUTE) << 5 | (SECOND) >> 1)
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_DOS_H_ */
|