1
0
mirror of https://github.com/janet-lang/janet synced 2025-10-18 09:17:40 +00:00

Change convention for naming modules and functions.

This commit is contained in:
Calvin Rose
2018-05-08 19:40:28 -04:00
parent 8fd8b1126b
commit f47323c915
25 changed files with 272 additions and 283 deletions

View File

@@ -86,10 +86,10 @@ static int os_exit(DstArgs args) {
}
static const DstReg cfuns[] = {
{"os-execute", os_execute},
{"os-exit", os_exit},
{"os-getenv", os_getenv},
{"os-setenv", os_setenv},
{"os.execute", os_execute},
{"os.exit", os_exit},
{"os.getenv", os_getenv},
{"os.setenv", os_setenv},
{NULL, NULL}
};