diff options
Diffstat (limited to 'lib.c')
-rw-r--r-- | lib.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -156,9 +156,9 @@ static Val fn_ssplit(State *S, int nargs, Val *args) { return VAL_OBJ(out); } -static Val fn_schars_ascii(State *S, int nargs, Val *args) { - CHECK(nargs==1, "need exactly 1 args for schars-ascii"); - CHECK(IS_STRING(args[0]), "need string arg for schars-ascii"); +static Val fn_sbytes(State *S, int nargs, Val *args) { + CHECK(nargs==1, "need exactly 1 args for sbytes"); + CHECK(IS_STRING(args[0]), "need string arg for sbytes"); ObjString *s = AS_STRING(args[0]); ObjArr *a = objarr_new(S); for (int i = 0; i < s->len; i++) @@ -220,7 +220,7 @@ static BuiltinFunc builtin_funcs[] = { { "s,@", fn_spendsplat }, { "ssub?", fn_ssub }, { "ssplit", fn_ssplit }, - { "schars-ascii", fn_schars_ascii }, + { "sbytes", fn_sbytes }, { "sin", fn_sin }, { "cos", fn_cos }, |