fix comments
This commit is contained in:
parent
ad04bfb9fb
commit
a22eef1060
|
@ -41,7 +41,7 @@ enum pic_vtype {
|
|||
* ptr : 111111111111TTTT PPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPP
|
||||
* int : 1111111111110110 0000000000000000 IIIIIIIIIIIIIIII IIIIIIIIIIIIIIII
|
||||
* sym : 1111111111110111 0000000000000000 SSSSSSSSSSSSSSSS SSSSSSSSSSSSSSSS
|
||||
* char : 1111111111111000 0000000000000000 CCCCCCCCCCCCCCCC ................
|
||||
* char : 1111111111111000 0000000000000000 CCCCCCCCCCCCCCCC CCCCCCCCCCCCCCCC
|
||||
*/
|
||||
|
||||
typedef uint64_t pic_value;
|
||||
|
|
40
vm.c
40
vm.c
|
@ -35,27 +35,27 @@ pic_get_proc(pic_state *pic)
|
|||
}
|
||||
|
||||
/**
|
||||
* char type desc.
|
||||
* ---- ---- ----
|
||||
* o pic_value * object
|
||||
* i int * int
|
||||
* I int *, bool * int with exactness
|
||||
* k size_t * size_t implicitly converted from int
|
||||
* f double * float
|
||||
* F double *, bool * float with exactness
|
||||
* s pic_str ** string object
|
||||
* z char ** c string
|
||||
* m pic_sym * symbol
|
||||
* v pic_vec ** vector object
|
||||
* b pic_blob ** bytevector object
|
||||
* c char * char
|
||||
* l struct pic_proc ** lambda object
|
||||
* p struct pic_port ** port object
|
||||
* d struct pic_dict ** dictionary object
|
||||
* e struct pic_error ** error object
|
||||
* char type desc.
|
||||
* ---- ---- ----
|
||||
* o pic_value * object
|
||||
* i int * int
|
||||
* I int *, bool * int with exactness
|
||||
* k size_t * size_t implicitly converted from int
|
||||
* f double * float
|
||||
* F double *, bool * float with exactness
|
||||
* s pic_str ** string object
|
||||
* z char ** c string
|
||||
* m pic_sym * symbol
|
||||
* v pic_vec ** vector object
|
||||
* b pic_blob ** bytevector object
|
||||
* c char * char
|
||||
* l struct pic_proc ** lambda object
|
||||
* p struct pic_port ** port object
|
||||
* d struct pic_dict ** dictionary object
|
||||
* e struct pic_error ** error object
|
||||
*
|
||||
* | optional operator
|
||||
* * int *, pic_value ** variable length operator
|
||||
* | optional operator
|
||||
* * size_t *, pic_value ** variable length operator
|
||||
*/
|
||||
|
||||
int
|
||||
|
|
Loading…
Reference in New Issue