1
0
mirror of https://github.com/janet-lang/janet synced 2025-11-08 03:23:01 +00:00

Begin adding more complete documentation.

This commit is contained in:
Calvin Rose
2018-11-15 15:45:41 -05:00
parent d603e0eb8d
commit 4d119e4e03
20 changed files with 283 additions and 222 deletions

View File

@@ -1144,10 +1144,10 @@ static int cfun_unmarshal(JanetArgs args) {
}
static const JanetReg cfuns[] = {
{"marshal", cfun_marshal},
{"unmarshal", cfun_unmarshal},
{"env-lookup", cfun_env_lookup},
{NULL, NULL}
{"marshal", cfun_marshal, NULL},
{"unmarshal", cfun_unmarshal, NULL},
{"env-lookup", cfun_env_lookup, NULL},
{NULL, NULL, NULL}
};
/* Module entry point */