◄Up► ◄Contents► ◄Index► ◄Back► ─────Run-Time Library─────────────────────────────────────────────────────── The file time and the date are stored individually, using unsigned integers as bit fields. File time and date are packed as follows: Time F E D C B A 9 8 7 6 5 4 3 2 1 0 ├───┬───┬───┬───┬───┬───┬───┬───┼───┬───┬───┬───┬───┬───┬───┬───┤ │ hours │ minutes │ seconds │ └───────────────────────────┴───────────────┴───────────────────┘ hours = 0-23 minutes = 0-59 seconds = 0-29 in two-second intervals Date F E D C B A 9 8 7 6 5 4 3 2 1 0 ├───┬───┬───┬───┬───┬───┬───┬───┼───┬───┬───┬───┬───┬───┬───┬───┤ │ year │ month │ day │ └───────────────────────────┴───────────────┴───────────────────┘ year = 0-119 (relative to 1980) month = 1-12 day = 1-31 -♦-