change function name and cli format

This commit is contained in:
ValKmjolnir
2021-10-14 23:22:28 +08:00
parent 321a762612
commit 645a652830
12 changed files with 203 additions and 213 deletions
+1 -1
View File
@@ -904,7 +904,7 @@ nasal_ref builtin_print(std::vector<nasal_ref>& local,nasal_gc& gc)
```
After that, register the built-in function's name(in nasal) and the function's pointer in this table:
```C++
struct FUNC_TABLE
struct func
{
const char* name;
nasal_ref (*func)(std::vector<nasal_ref>&,nasal_gc&);