Skip to content

Commit

Permalink
[Nim] handle special characters in paths (#412)
Browse files Browse the repository at this point in the history
  • Loading branch information
tersec committed Mar 26, 2024
1 parent 6164f27 commit 1ef67c1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bindings/nim/kzg_abi.nim
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ when not defined(kzgExternalBlst):

{.compile: srcPath & "c_kzg_4844.c"}

{.passc: "-I" & bindingsPath .}
{.passc: "-I" & srcPath .}
{.passc: "-I" & escape(bindingsPath) .}
{.passc: "-I" & escape(srcPath) .}

const
FIELD_ELEMENTS_PER_BLOB* = 4096
Expand All @@ -40,15 +40,15 @@ const
KZG_ERROR* = (2).KZG_RET
KZG_MALLOC* = (3).KZG_RET

proc `$`*(x: KZG_RET): string =
func `$`*(x: KZG_RET): string =
case x
of KZG_OK: "ok"
of KZG_BADARGS: "kzg badargs"
of KZG_ERROR: "kzg error"
of KZG_MALLOC: "kzg malloc error"
else: "kzg unknown error"

proc `==`*(a, b: KZG_RET): bool =
func `==`*(a, b: KZG_RET): bool =
a.cint == b.cint

type
Expand Down

0 comments on commit 1ef67c1

Please sign in to comment.