diff options
| author | gingerBill <bill@gingerbill.org> | 2023-07-22 08:33:30 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2023-07-22 08:33:30 +0100 |
| commit | 99ebfc337e7dc3b103dcc77ce6609e4a1c44073f (patch) | |
| tree | 210f2668ce572e8fa55916e60ad50aab5c265fd5 /src/tilde | |
| parent | e5f9458905f27b027403a5a0b94cc7762984a08e (diff) | |
Support multiple return values
Diffstat (limited to 'src/tilde')
| -rw-r--r-- | src/tilde/tb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tilde/tb.h b/src/tilde/tb.h index 048fce598..8e5bc5567 100644 --- a/src/tilde/tb.h +++ b/src/tilde/tb.h @@ -951,7 +951,7 @@ TB_API TB_Node* tb_inst_sint(TB_Function* f, TB_DataType dt, int64_t imm); TB_API TB_Node* tb_inst_uint(TB_Function* f, TB_DataType dt, uint64_t imm); TB_API TB_Node* tb_inst_float32(TB_Function* f, float imm); TB_API TB_Node* tb_inst_float64(TB_Function* f, double imm); -TB_API TB_Node* tb_inst_cstring(TB_Function* f, const char* str); +TB_API TB_Node* tb_inst_cstring(TB_Function* f, const char* srt); TB_API TB_Node* tb_inst_string(TB_Function* f, size_t len, const char* str); // write 'val' over 'count' bytes on 'dst' |