about summary refs log tree commit diff stats
path: root/src/bindings/constcharp.nim
blob: 057b8acb131af7d0fb744ef8a467d2d543fab1f4 (plain) (blame)
1
2
3
4
5
6
type
  cstringConstImpl {.importc: "const char*".} = cstring
  cstringConst* = distinct cstringConstImpl

proc `[]`*(s: cstringConst, i: int): char = cstring(s)[i]
proc `$`*(s: cstringConst): string {.borrow.}