summary refs log tree commit diff stats
path: root/lib/std/time_t.nim
blob: 37918ee6ca3a8f46f5edfd55107d3cd885003cf9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
#
#            Nim's Runtime Library
#        (c) Copyright 2019 Nim contributors
#
#    See the file "copying.txt", included in this
#    distribution, for details about the copyright.
#

when defined(nimdoc):
  type
    impl = distinct int64
    Time* = impl ## \
      ## Wrapper for ``time_t``. On posix, this is an alias to ``posix.Time``.
elif defined(windows):
  when defined(i386) and defined(gcc):
    type Time* {.importc: "time_t", header: "<time.h>".} = distinct int32
  else:
    # newest version of Visual C++ defines time_t to be of 64 bits
    type Time* {.importc: "time_t", header: "<time.h>".} = distinct int64
elif defined(posix):
  import posix
  export posix.Time
nf">mac(n: expr): expr = let n = callsite() expectKind(n, nnkCall) expectLen(n, 2) expectKind(n[1], nnkStrLit) var s: string = n[1].strVal s = s.replace("l", "!!") result = newStrLitNode("Your value sir: '$#'" % [s]) const s = testBlock() const t = mac("HEllo World") echo s, " ", t